diff --git a/src/ruc/format/log.h b/src/ruc/format/log.h index 28f51ac..d0e3471 100644 --- a/src/ruc/format/log.h +++ b/src/ruc/format/log.h @@ -70,7 +70,8 @@ private: template const LogOperatorStyle& operator<<(const LogOperatorStyle& logOperatorStyle, const T& value) { - _format(const_cast(logOperatorStyle).builder(), value); + Formatter formatter; + formatter.format(const_cast(logOperatorStyle).builder(), value); return logOperatorStyle; }