We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d21e44 commit 7617abfCopy full SHA for 7617abf
1 file changed
include/MaaUtils/LoggerUtils.h
@@ -105,7 +105,7 @@ class MAA_UTILS_API LogStream
105
{
106
json::value j(std::forward<T>(value));
107
// 直接 dumps 的 string 会多一对双引号,有点难看
108
- buffer_ << j.is_string() ? j.as_string() : j.dumps() << sep.str;
+ buffer_ << (j.is_string() ? j.as_string() : j.dumps()) << sep.str;
109
}
110
111
template <typename... args_t>
0 commit comments