aboutsummaryrefslogtreecommitdiff
path: root/src/libutil/logging.hh
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2019-12-05 17:48:16 +0100
committerEelco Dolstra <edolstra@gmail.com>2019-12-05 19:58:49 +0100
commit603b2f583c3be45481d2d0e45e8ee8bfa9cfbfcf (patch)
tree51c4c7671d107f0eb49f1b52e11dfa58d2940df5 /src/libutil/logging.hh
parent334b8f8af1c47970e6cdf3ca6f45dfb8cd8e7938 (diff)
Revert "Make fmt() non-recursive"
This reverts commit 2b761d5f50b7dc17dc55c31980c2253c37b3c920. Also *really* make fmt() take arguments by reference.
Diffstat (limited to 'src/libutil/logging.hh')
-rw-r--r--src/libutil/logging.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/logging.hh b/src/libutil/logging.hh
index 3fbd75562..beb5e6b64 100644
--- a/src/libutil/logging.hh
+++ b/src/libutil/logging.hh
@@ -161,7 +161,7 @@ template<typename... Args>
inline void warn(const std::string & fs, const Args & ... args)
{
boost::format f(fs);
- nop{boost::io::detail::feed(f, args)...};
+ formatHelper(f, args...);
logger->warn(f.str());
}