diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-02-16 00:17:42 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-02-16 00:17:42 +0100 |
commit | fd58d85cd5a584228d0d5d9492e26a18541574a5 (patch) | |
tree | df32ad087dcbfc99f7d26269e7c68f6edce87ce8 /src/cli | |
parent | 26c81e022544411fdb888b9d5c49a91117f01dc5 (diff) |
Using logger for printing output path
Diffstat (limited to 'src/cli')
-rw-r--r-- | src/cli/Main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cli/Main.cpp b/src/cli/Main.cpp index cbe7578..e9b42c0 100644 --- a/src/cli/Main.cpp +++ b/src/cli/Main.cpp @@ -171,7 +171,8 @@ int main(int argc, char **argv) fs::path outP = fs::canonical("."); outP /= (in.stem().string() + "." + format); outputPath = outP.string(); - std::cout << "Using " << outputPath << " as output path." << std::endl; + logger.note(std::string("Using ") + outputPath + + std::string(" as output path.")); } // check format. if (!formats.count(format)) { |