1
0
mirror of https://github.com/clementine-player/Clementine synced 2024-12-16 11:19:18 +01:00

Update a couple of old debug statements.

This commit is contained in:
John Maguire 2012-03-12 17:11:07 +01:00
parent c91024ad33
commit 63ee8b2e55

View File

@ -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;