From c14fb1c7b24f6328c168fd560fb0f9a6be4920d5 Mon Sep 17 00:00:00 2001 From: Daniel Wolf Date: Tue, 19 Apr 2016 19:30:38 +0200 Subject: [PATCH] Fixed output format for structured logging --- src/logging.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logging.h b/src/logging.h index 84ebad9..9e8cda9 100644 --- a/src/logging.h +++ b/src/logging.h @@ -126,7 +126,7 @@ namespace logging { template void logTimedEvent(const std::string& eventName, const Timed timedValue) { - debugFormat("##{0} [{1}-{2}]: {3}", + debugFormat("##{0}[{1}-{2}]: {3}", eventName, formatDuration(timedValue.getStart()), formatDuration(timedValue.getEnd()), timedValue.getValue()); }