Disable debug logging

This commit is contained in:
Igor Nikonov 2023-04-04 17:02:53 +00:00
parent 2bf2764898
commit 078ebff92a

View File

@ -14,7 +14,7 @@
namespace DB
{
constexpr bool debug_logging_enabled = true;
constexpr bool debug_logging_enabled = false;
template <typename T>
void logDebug(String key, const T & value, const char * separator = " : ")