Skip to content

Commit 00ff7c9

Browse files
committed
Avoid logs to client.
1 parent 00488bc commit 00ff7c9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cpp/deeplake_pg/logger.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class logger_adapter : public base::logger_adapter
3737
elog(DEBUG1, "%s", message.c_str());
3838
break;
3939
case base::log_level::info:
40-
elog(INFO, "%s", message.c_str());
40+
elog(LOG, "%s", message.c_str());
4141
break;
4242
case base::log_level::warning:
4343
elog(WARNING, "%s", message.c_str());

0 commit comments

Comments
 (0)