JDK-7153446 : Redirect browser VM debug log to browser console
  • Type: Enhancement
  • Component: deploy
  • Sub-Component: deployment_toolkit
  • Affected Version: 8
  • Priority: P3
  • Status: Closed
  • Resolution: Fixed
  • OS: generic
  • CPU: generic
  • Submitted: 2012-03-13
  • Updated: 2013-08-13
  • Resolved: 2012-03-21
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 7 JDK 8
7u6Fixed 8 b31Fixed
Related Reports
Relates :  
Relates :  
Description
Currently debug info from browser JVM goes to shell console window. This is not ver convinient to lookup/use.

We could redirect it to the browser console using window.console.log API if available.

Comments
Verified using jdk8-b102
13-08-2013

EVALUATION goals: - Be able to see browser JVM plugin trace in the browser console - Basic tracing framework to use browser logging capabilities Approach: - Browser JVM can have list of PluginLog instances - One of them does what we used to have - output to console (PluginLog itself for Mac/Unix, ConsoleLog on windows) - We also create FirebugLog object per plugin instance. It will send output to window.console.log provided by Firebug and most of the modern NPAPI based browsers. - PluginTrace.java is java view on the log framework. Currently we only use it to redirect stdout to it (most of trace log on browser VM side is stdout based). Change keeps original console shell window. In my experiments i tested log to the browser console works for: - Safari on Mac - FF 3.6 + Firebug on Windows - Chrome 17 on Windows
15-03-2012