summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorkh1 <karsten.heimrich@nokia.com>2012-01-16 23:42:54 +0100
committerTim Jenssen <tim.jenssen@nokia.com>2012-01-17 12:05:35 +0100
commit376804db8788bfde1985b9d2bbc14af68e9c9260 (patch)
treeb9eeb78e473ce4e98087f00e625fe31350188221 /tools
parente5c477906fd506cf06ac95311a5b3512a6d85e47 (diff)
Use qDebug instead of verbose.
The message handler now forwards everything to the verbosew riter anyway. Change-Id: I822f86e8f2e2e7690a3b855ed83199d2f41dc480 Reviewed-by: Tim Jenssen <tim.jenssen@nokia.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/extractbinarydata/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/extractbinarydata/main.cpp b/tools/extractbinarydata/main.cpp
index 460cd47c0..957864d3d 100644
--- a/tools/extractbinarydata/main.cpp
+++ b/tools/extractbinarydata/main.cpp
@@ -143,7 +143,7 @@ int main(int argc, char **argv)
openForRead(&installerBase, installerBase.fileName());
writeMaintenanceBinary(arguments.at(1), &installerBase, installerBase.size());
} catch (const Error &error) {
- verbose() << error.message() << std::endl;
+ qDebug() << error.message();
return EXIT_FAILURE;
}
@@ -154,7 +154,7 @@ int main(int argc, char **argv)
openForRead(&input, input.fileName());
layout = BinaryContent::readBinaryLayout(&input, findMagicCookie(&input, MagicCookie));
} catch (const Error &error) {
- verbose() << error.message() << std::endl;
+ qDebug() << error.message();
return EXIT_FAILURE;
}
@@ -179,7 +179,7 @@ int main(int argc, char **argv)
file.close();
input.close();
} catch (const Error &error) {
- verbose() << error.message() << std::endl;
+ qDebug() << error.message();
return EXIT_FAILURE;
}
}