溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

DDLog使用了解

發(fā)布時間:2020-07-28 09:39:32 來源:網(wǎng)絡(luò) 閱讀:1940 作者:xinji0702 欄目:開發(fā)技術(shù)



利用xcodeColors插件方法,使得不同的打印方法打印的顏色不一樣,來凸顯重點(diǎn)信息


It's sometimes helpful to color-coordinate your log messages. For example, you may want your error messages to print in red so they stick out.
This is possible with DDTTYLogger and XcodeColors.

DDLog使用了解

Install XcodeColors

XcodeColors is a simple plugin for Xcode.
It allows you to use colors in the Xcode debugging console.

Full installation instructions can be found on the XcodeColors project page:
https://github.com/robbiehanson/XcodeColors

But here's a summary:

  • Download the plugin

  • Slap it into the Xcode Plug-ins directory

  • Restart Xcode

Enable Colors

All it takes is one extra line of code to enable colors in Lumberjack:

// Standard lumberjack initialization[DDLogaddLogger:[DDTTYLoggersharedInstance]];// And we also enable colors[[DDTTYLoggersharedInstance]setColorsEnabled:YES];

The default color scheme (if you don't customize it) is:

  • DDLogError : Prints in red

  • DDLogWarn : Prints in orange

However, you can fully customize the color schemes however you like!
In fact, you can customize the foreground and/or background colors.
And you can specify any RGB value you'd like.

// Let's customize our colors.// DDLogInfo : Pink#if TARGET_OS_IPHONEUIColor*pink=[UIColorcolorWithRed:(255/255.0)green:(58/255.0)blue:(159/255.0)alpha:1.0];#elseNSColor*pink=[NSColorcolorWithCalibratedRed:(255/255.0)green:(58/255.0)blue:(159/255.0)alpha:1.0];#endif[[DDTTYLoggersharedInstance]setForegroundColor:pinkbackgroundColor:nilforFlag:LOG_FLAG_INFO];DDLogInfo(@"Warming up printer");// Prints in Pink !

XcodeColors and iOS

You may occasionally notice that colors don't work when you're debugging your app in the simulator. And you may also notice that you colors never work when debugging on the actual device. How do I fix it so it works everywhere, all the time?

You can fix it in a few seconds. Here's how.

  • In Xcode bring up the Scheme Editor (Product -> Edit Scheme...)

  • Select "Run" (on the left), and then the "Arguments" tab

  • Add a new Environment Variable named "XcodeColors", with a value of "YES"

DDLog使用了解

Your colors should now work on the simulator and on the device, every single time.

More information:

The XcodeColors plugin is automatically loaded by Xcode when Xcode launches. When XcodeColors runs, it sets the environment variable "XcodeColors" to "YES". Thus the Xcode application itself has this environment variable set.

It is this environment variable that Lumberjack uses to detect whether XcodeColors is installed or not. Because if Lumberjack injects color information when XcodeColors isn't installed, then your log statements have a bunch of garbage characters in them.

Now any application that Xcode launches inherits the environment variables from Xcode. So if you hit build-and-go, and Xcode launches the simulator for you automatically, then the colors will work. But if you manually launch the simulator, then it doesn't inherit environment variables from Xcode (because Xcode isn't the process' parent in this case). It's a similar problem when debugging on the actual device.

Colors in the Terminal

If you ever do any debugging in the Terminal, then you're in luck! DDTTYLogger supports color in terminals as well.

If your shell supports color, the DDTTYLogger will automatically map your requested colors to the closest supported color by your shell. In most cases your terminal will be "xterm-256color", so your terminal will support 256 different colors, and you'll get a close match for whatever RGB values you configure.





向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI