Skip to content

Commit

Permalink
Remove call to goog.debug.LogRecord#getExceptionText()
Browse files Browse the repository at this point in the history
It will be deleted from Closure soon.
  • Loading branch information
sevaseva committed Dec 3, 2014
1 parent 51f5227 commit e5d87c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion javascript/firefox-driver/js/logger.js
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ fxdriver.logging.addClosureToConsoleLogger_ = function(logger) {
sb.push('[', logRecord.getLoggerName(), '] ');
sb.push(logRecord.getMessage(), '\n');
if (logRecord.getException()) {
sb.push(logRecord.getExceptionText(), '\n');
sb.push(logRecord.getException().message, '\n');
}
consoleService.logStringMessage(sb.join(''));
});
Expand Down

0 comments on commit e5d87c2

Please sign in to comment.