Skip to content

Commit

Permalink
fix(console): adding line break to console messages (#1013)
Browse files Browse the repository at this point in the history
  • Loading branch information
rozele committed Mar 6, 2017
1 parent 131dc87 commit 21ec10c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -265,11 +265,11 @@ private JavaScriptValue NativeLoggingHook(
{
var message = arguments[1].ToString();
var logLevel = (LogLevel)(int)arguments[2].ToDouble();
Debug.Write($"[JS {logLevel}] {message}");
Debug.WriteLine($"[JS {logLevel}] {message}");
}
catch
{
Debug.Write("Unable to process JavaScript console statement");
Debug.WriteLine("Unable to process JavaScript console statement");
}

return JavaScriptValue.Undefined;
Expand Down

0 comments on commit 21ec10c

Please sign in to comment.