Fixed output format for structured logging

This commit is contained in:
Daniel Wolf 2016-04-19 19:30:38 +02:00
parent 560281807e
commit c14fb1c7b2
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ namespace logging {
template<typename TValue> template<typename TValue>
void logTimedEvent(const std::string& eventName, const Timed<TValue> timedValue) { void logTimedEvent(const std::string& eventName, const Timed<TValue> timedValue) {
debugFormat("##{0} [{1}-{2}]: {3}", debugFormat("##{0}[{1}-{2}]: {3}",
eventName, formatDuration(timedValue.getStart()), formatDuration(timedValue.getEnd()), timedValue.getValue()); eventName, formatDuration(timedValue.getStart()), formatDuration(timedValue.getEnd()), timedValue.getValue());
} }