julian-weinert / LinkedLog

LinkedLog is a Xcode plugin that includes a Xcode PCH header file template that adds the macros `LLog` and `LLogF` and parses their output to link from the console to the corresponding file and line.
MIT License
22 stars 2 forks source link

LinkedLog Xcode Plugin

LinkedLog is a Xcode plugin that includes a Xcode PCH file template that adds the macros LLog and LLogF. The LLog macro will work like NSLog but additionally prints the file name and line number of the call.

LinkedLog then parses the logs and adds links to the corresponding file and line.

Status

Stories ToDo Stories in Progress Stories Done

Build Status LinkedLog chat

Install

  1. Build the project to install the plugin. The plugin gets installed in /Library/Application Support/Developer/Shared/Xcode/Plug-ins/LinkedLog.xcplugin.
  2. Restart Xcode for the plugin to be activated.

Alternatively, install it using Alcatraz plugin manager.

Configuration

Usage

Whenever you want a log message, use LLog(@"string with format: %@", @"'format'"); just as NSLog. The messages will be omitted when building without DEBUG build variable. To force logs to also appear with production build configs use LLogF instead.

Screenshot

LinkedLog

Bugs and limitations

Pull requests

If you want to contribute, send me a pull request.

Improvements

Stories ToDo