diff options
author | Daniel M. Pelt <D.M.Pelt@cwi.nl> | 2015-03-13 17:22:41 +0100 |
---|---|---|
committer | Daniel M. Pelt <D.M.Pelt@cwi.nl> | 2015-03-13 17:26:35 +0100 |
commit | 35fadf8641b05d357a37e8098b9a801ba0e815b9 (patch) | |
tree | 941eb461bb05065ce2dfcbf3dc423b19748d17ed /src/Config.cpp | |
parent | f21700e00e81538d5510973a51b8ae97fb4a24dd (diff) | |
download | astra-35fadf8641b05d357a37e8098b9a801ba0e815b9.tar.gz astra-35fadf8641b05d357a37e8098b9a801ba0e815b9.tar.bz2 astra-35fadf8641b05d357a37e8098b9a801ba0e815b9.tar.xz astra-35fadf8641b05d357a37e8098b9a801ba0e815b9.zip |
Use a less verbose default fmt for screen logging and cleaner messages
Diffstat (limited to 'src/Config.cpp')
-rw-r--r-- | src/Config.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Config.cpp b/src/Config.cpp index 388cfdf..d860638 100644 --- a/src/Config.cpp +++ b/src/Config.cpp @@ -148,7 +148,7 @@ bool ConfigStackCheck<T>::stopParsing() if (!errors.empty()) { ostringstream os; - os << "Warning: " << name << ": unused configuration options: " << errors; + os << name << ": unused configuration options: " << errors; ASTRA_WARN(os.str().c_str()); return false; } |