diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-09-27 15:56:12 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-09-27 15:58:33 +0200 |
commit | 346af3e3e49ae9fdd9c1cb6bf38506371773a7f2 (patch) | |
tree | 693e12db01dcd95bbb4634023ffc064e37cd96f7 | |
parent | 9c6c0d7a538e821a0e6130b7b64b4244e73bd6e7 (diff) |
csv: emit debug info with module prefix
-rw-r--r-- | csv/csv.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/csv/csv.cpp b/csv/csv.cpp index c3805ae7..65014eec 100644 --- a/csv/csv.cpp +++ b/csv/csv.cpp @@ -167,7 +167,7 @@ bool CSV::getGameData(int id, unsigned char* table, QString& gamename) table[i] = t(tmp[i]); } } - qDebug() << "game-id" << id_str << "proto" << proto; + qDebug() << "csv: game-id" << id_str << "proto" << proto; gamename = move(name); return true; } |