Trying to set up XCGLogger and receiving error:
Ambiguous reference to member 'log'
I see this issue was already raised but I'm not clear on the solution..
Per the install guide added this global constant to AppDelegate.swift:
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
let log = XCGLogger.defaultInstance()
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
log.setup(.Debug, showThreadName: true, showLogLevel: true, showFileNames: true, showLineNumbers: true, writeToFile: nil, fileLogLevel: .Debug)
return true
}
Then in individual source files:
import XCGLogger
log.debug("A debug message")
What is the proper usage?
The issue is rather simple. If you declare
log
insideAppDelegate
, you are making an instance variable. To access it, you will have to access it as instance variable:If you want
log
to be accessible everywhere, you will have to make it a global constant:(there is no need to declare it in
AppDelegate
file, you can basically put it anywhere in your code)or make it
static
:and access it using:
To explain the ambigious reference, there is a mathematical function called
log
, and there is also alog
function in themalloc.h
file. Since you are passing aString
as the first parameter and neither of the two functions is a match, the compiler warns you that it does not know which of the two functions you want to use.