From 63ee8b2e553451319599e8f3788005aab5716a9c Mon Sep 17 00:00:00 2001 From: John Maguire Date: Mon, 12 Mar 2012 17:11:07 +0100 Subject: [PATCH] Update a couple of old debug statements. --- src/core/mac_startup.mm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/mac_startup.mm b/src/core/mac_startup.mm index 01d32987d..c4a4eabbc 100644 --- a/src/core/mac_startup.mm +++ b/src/core/mac_startup.mm @@ -161,7 +161,7 @@ static BreakpadRef InitBreakpad() { } - (BOOL) application: (NSApplication*)app openFile:(NSString*)filename { - qDebug() << "Wants to open:" << [filename UTF8String]; + qLog(Debug) << "Wants to open:" << [filename UTF8String]; if (application_handler_->LoadUrl(QString::fromUtf8([filename UTF8String]))) { return YES; @@ -327,8 +327,8 @@ bool MigrateLegacyConfigFiles() { // Create ~/Library/Application Support which should already exist anyway. QDir::root().mkpath(GetApplicationSupportPath()); - qDebug() << "Move from:" << old_config_dir - << "to:" << new_config_dir; + qLog(Debug) << "Move from:" << old_config_dir + << "to:" << new_config_dir; NSFileManager* file_manager = [[NSFileManager alloc] init]; NSError* error;