aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/file-manager.cpp
diff options
context:
space:
mode:
authorNipun Garg2019-06-23 08:22:59 +0530
committerEugene Sandulenko2019-09-03 17:16:57 +0200
commita1b1275764f493ccf25eb44e1a67a4d6b28e311e (patch)
treed81deff04bb6eda6e4007d48afec548c46e23604 /engines/hdb/file-manager.cpp
parentd48404d087f1e04ff6d1f730c006fbaad34e548c (diff)
downloadscummvm-rg350-a1b1275764f493ccf25eb44e1a67a4d6b28e311e.tar.gz
scummvm-rg350-a1b1275764f493ccf25eb44e1a67a4d6b28e311e.tar.bz2
scummvm-rg350-a1b1275764f493ccf25eb44e1a67a4d6b28e311e.zip
HDB: Add and modify debug output
Diffstat (limited to 'engines/hdb/file-manager.cpp')
-rw-r--r--engines/hdb/file-manager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/hdb/file-manager.cpp b/engines/hdb/file-manager.cpp
index 622d2c09f5..0a238120ba 100644
--- a/engines/hdb/file-manager.cpp
+++ b/engines/hdb/file-manager.cpp
@@ -96,7 +96,7 @@ Common::SeekableReadStream *FileMan::findFirstData(const char *string, DataType
Common::String fileString;
MPCEntry *file = NULL;
- debug(2, "Looking for Data: '%s'", string);
+ debug(4, "Looking for Data: '%s'", string);
// Find MPC Entry
for (MPCIterator it = _dir.begin(); it != _dir.end(); it++) {
@@ -106,13 +106,13 @@ Common::SeekableReadStream *FileMan::findFirstData(const char *string, DataType
file = *it;
break;
} else {
- debug(2, "Found Data but type mismatch: '%s', target: %d, found: %d", string, type, (*it)->type);
+ debug(4, "Found Data but type mismatch: '%s', target: %d, found: %d", string, type, (*it)->type);
}
}
}
if (file == NULL) {
- debug(2, "Couldn't find Data: '%s'", string);
+ debug(4, "Couldn't find Data: '%s'", string);
return NULL;
}