Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/plugin/AdblockPlusClient.cpp

Issue 5747779603267584: Issue #1234 - Rework strings in debug facility (Closed)
Patch Set: Fixed spaces Created Feb. 25, 2015, 3:24 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/plugin/AdblockPlusClient.cpp
===================================================================
--- a/src/plugin/AdblockPlusClient.cpp
+++ b/src/plugin/AdblockPlusClient.cpp
@@ -168,9 +168,9 @@
enginePipe->WriteMessage(message);
inputBuffer = enginePipe->ReadMessage();
}
- catch (const std::exception& e)
+ catch (const std::exception& ex)
{
- DEBUG_GENERAL(e.what());
+ DEBUG_EXCEPTION(ex);
return false;
}
DEBUG_GENERAL("CallEngine end");

Powered by Google App Engine
This is Rietveld