Skip to content

Commit

Permalink
Client: Improved log output
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jul 10, 2013
1 parent f67e719 commit b4a4725
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion doomsday/client/src/audio/audiodriver.cpp
Expand Up @@ -415,7 +415,7 @@ static void selectInterfaces(audiodriverid_t defaultDriverId)

void AudioDriver_PrintInterfaces(void)
{
LOG_INFO(_E(b) "Audio configuration" _E(l) " (by decreasing priority):");
LOG_INFO(_E(b) "Audio configuration" _E(2) " (by decreasing priority):");

de::String str;
QTextStream os(&str);
Expand Down
11 changes: 5 additions & 6 deletions doomsday/client/src/updater/updater.cpp
Expand Up @@ -290,13 +290,12 @@ DENG2_PIMPL(Updater)

VersionInfo currentVersion;

LOG_VERBOSE("Received latest version information:\n"
" - version: %s (running %s)\n"
" - package: %s\n"
" - change log: %s")
LOG_VERBOSE(_E(b) "Received latest version information:\n" _E(.)
" - version: " _E(>) "%s " _E(2) "(installed version is %s)")
<< latestVersion.asText()
<< currentVersion.asText()
<< latestPackageUri << latestLogUri;
<< currentVersion.asText();
LOG_VERBOSE(" - package: " _E(>) _E(i) "%s") << latestPackageUri;
LOG_VERBOSE(" - change log: " _E(>) _E(i) "%s") << latestLogUri;

if(availableDlg)
{
Expand Down

0 comments on commit b4a4725

Please sign in to comment.