Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -291,8 +291,8 @@ public static void log(String message) {
*/
public static void log(Throwable e) {
// print on console for easy debugging
if (m_displayExceptionOnConsole) {
e.printStackTrace();
if (!m_displayExceptionOnConsole) {
return;
}
// log into Eclipse .log
{
Expand Down
Loading