diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2020-09-25 11:30:04 -0400 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2020-09-25 11:30:04 -0400 |
commit | cfe791a638a3fdf53a2608f885c407bafc238094 (patch) | |
tree | eb6618d98c78fd96926cd46d372f7a930edb5ec9 /src/libutil/logging.hh | |
parent | ec14465a001387f8972c1b8332293d4fbce5ec97 (diff) |
stdout_ -> cout
Better to get creative than just sprinkle arbitrary underscores.
Diffstat (limited to 'src/libutil/logging.hh')
-rw-r--r-- | src/libutil/logging.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/logging.hh b/src/libutil/logging.hh index 77b92fb51..e3fe613e8 100644 --- a/src/libutil/logging.hh +++ b/src/libutil/logging.hh @@ -100,7 +100,7 @@ public: virtual void writeToStdout(std::string_view s); template<typename... Args> - inline void stdout_(const std::string & fs, const Args & ... args) + inline void cout(const std::string & fs, const Args & ... args) { boost::format f(fs); formatHelper(f, args...); |