Loading src/sled/config.cc +5 −2 Original line number Diff line number Diff line Loading @@ -54,9 +54,12 @@ Config::ReadInConfig() return true; // goto config_read_success; } catch (const std::exception &e) { LOGE("Failed to parse config file: {}, reason: {}", sled::to_string(full_path), e.what()); LOGE("sled::Config", "Failed to parse config file: {}, reason: {}", sled::to_string(full_path), e.what()); } catch (...) { LOGD("Failed to parse config file: {}", sled::to_string(full_path)); LOGD("sled::Config", "Failed to parse config file: {}", sled::to_string(full_path)); } } return false; Loading Loading
src/sled/config.cc +5 −2 Original line number Diff line number Diff line Loading @@ -54,9 +54,12 @@ Config::ReadInConfig() return true; // goto config_read_success; } catch (const std::exception &e) { LOGE("Failed to parse config file: {}, reason: {}", sled::to_string(full_path), e.what()); LOGE("sled::Config", "Failed to parse config file: {}, reason: {}", sled::to_string(full_path), e.what()); } catch (...) { LOGD("Failed to parse config file: {}", sled::to_string(full_path)); LOGD("sled::Config", "Failed to parse config file: {}", sled::to_string(full_path)); } } return false; Loading