Skip to content

Commit cc75aca

Browse files
sanrisefacebook-github-bot
authored andcommitted
Reduce the verbosity of logs that indicate failure to get OD config. (#1170)
Summary: When we enable ondemand tracing in MSL, these logs show up a lot due to issues like D84573484. While we are fixing those, also increasing the log level for these so as to not be a nuisance for people who enable KINETO_USE_DAEMON=1 (ondemand tracing). Reviewed By: sraikund16, leloleo Differential Revision: D86722299
1 parent f9ba0bb commit cc75aca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libkineto/src/IpcFabricConfigClient.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@ std::string IpcFabricConfigClient::getLibkinetoOndemandConfig(int32_t type) {
176176

177177
try {
178178
if (!fabricManager_->sync_send(*msg, std::string(kDynoIpcName))) {
179-
LOG(ERROR) << "Failed to send config type=" << type
180-
<< " to dyno: IPC sync_send fail";
179+
VLOG(1) << "Failed to send config type=" << type
180+
<< " to dyno: IPC sync_send fail";
181181
free(req);
182182
req = nullptr;
183183
return "";

0 commit comments

Comments
 (0)