objective-c logging best practices

前端 未结 2 1613
余生分开走
余生分开走 2020-12-24 03:36

I am writing my first objective-c daemon type process that works in the background. Everything it does needs to be logged properly.

I am fairly new to Apple stuff so

相关标签:
2条回答
  • 2020-12-24 04:01

    Another alternative you might want to try is https://github.com/CocoaLumberjack. Lumberjack is quite flexible and will allow you to log to various destinations, configure log levels, etc. It's very log4j / log4net like, if you are familiar with those.

    It's also reports that it is faster than ASL... I don't know how it compares to GTMLogger with respect to functionality or speed, but the documentation seems to be a bit more approachable.

    0 讨论(0)
  • 2020-12-24 04:23

    You should look at the Apple System Logger. ASL writes to the system log database (making it easy to query the log from Console.app or from within your own app) and additionally to one or more flat files (if you choose). Peter Hosey's introduction to the ASL is the best I'm aware of. ASL is a C-level API, but it's relatively easy to wrap in Objective-C if you'd like. I would recommend also taking a look at Google's Toolbox for Mac. Among many other goodies, it contains a GTMLogger facility that includes ASL support. I've ditched my home-grown ASL wrapper in favor of the GTMLogger.

    0 讨论(0)
提交回复
热议问题