Skip to content

Commit

Permalink
Definitions|Client: Replaced use of qDebug from MAPINFO translation
Browse files Browse the repository at this point in the history
These were causing plenty of spam from the cron-started MP test servers,
since cron mails all stdout/err output to the user.
  • Loading branch information
skyjake committed Feb 3, 2015
1 parent 234a7f8 commit bd81f6c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions doomsday/client/src/def_main.cpp
Expand Up @@ -655,7 +655,8 @@ static void readAllDefinitions()

if(!xlat.isEmpty())
{
qDebug() << "[TranslatedMapInfos] custom:false\n" << xlat;
LOGDEV_MAP_VERBOSE("Non-custom translated MAPINFO definitions:\n") << xlat;

if(!DED_ReadData(&defs, xlat.toUtf8().constData(),
"[TranslatedMapInfos]", false /*not custom*/))
{
Expand All @@ -665,7 +666,8 @@ static void readAllDefinitions()

if(!xlatCustom.isEmpty())
{
qDebug() << "[TranslatedMapInfos] custom:true\n" << xlatCustom;
LOGDEV_MAP_VERBOSE("Custom translated MAPINFO definitions:\n") << xlatCustom;

if(!DED_ReadData(&defs, xlatCustom.toUtf8().constData(),
"[TranslatedMapInfos]", true /*custom*/))
{
Expand Down

0 comments on commit bd81f6c

Please sign in to comment.