Commit 9f878bfe authored by Orvid King's avatar Orvid King Committed by Facebook Github Bot

Drop unused exception local

Summary: It's unused, remove it.

Reviewed By: yfeldblum

Differential Revision: D7462683

fbshipit-source-id: 604c5691d69f2576c83c25350d29515efbc77a7b
parent 1b2d5ef8
...@@ -72,7 +72,7 @@ bool parseJsonLevel( ...@@ -72,7 +72,7 @@ bool parseJsonLevel(
try { try {
result = stringToLogLevel(levelString); result = stringToLogLevel(levelString);
return true; return true;
} catch (const std::exception& ex) { } catch (const std::exception&) {
throw LogConfigParseError{to<string>( throw LogConfigParseError{to<string>(
"invalid log level \"", "invalid log level \"",
levelString, levelString,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment