From 7b0189a119a6e9c679699581e754286658e1afcc Mon Sep 17 00:00:00 2001 From: King_DuckZ Date: Tue, 8 Mar 2016 08:51:57 +0100 Subject: [PATCH] Make debug output a bit nicer. --- src/scan/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scan/main.cpp b/src/scan/main.cpp index 3c4c33a..924efd7 100644 --- a/src/scan/main.cpp +++ b/src/scan/main.cpp @@ -83,7 +83,7 @@ int main (int parArgc, char* parArgv[]) { const auto& hashes = hashing->get_or_create(); for (const auto& hash : hashes) { - std::cout << mchlib::tiger_to_string(hash.hash) << std::endl; + std::cout << '"' << hash.path << "\" -> " << mchlib::tiger_to_string(hash.hash) << std::endl; } return 0;