TestFormatter.m 454 B

12345678910111213141516
  1. #import "TestFormatter.h"
  2. /**
  3. * For more information about creating custom formatters, see the wiki article:
  4. * https://github.com/CocoaLumberjack/CocoaLumberjack/wiki/CustomFormatters
  5. **/
  6. @implementation TestFormatter
  7. - (NSString *)formatLogMessage:(DDLogMessage *)logMessage
  8. {
  9. return [NSString stringWithFormat:@"%@ | %@ @ %@ | %@",
  10. [logMessage fileName], logMessage->_function, @(logMessage->_line), logMessage->_message];
  11. }
  12. @end