Can Chrome\'s built-in JavaScript console display colors?
I want errors in red, warnings in orange and console.log
\'s in green. Is that possible?
You can use a custom stylesheet to color your debugger. You can put this code in C:\Documents and Settings\
if you are in WinXP, but the directory varies by OS.
.console-error-level .console-message-text{
color: red;
}
.console-warning-level .console-message-text {
color: orange;
}
.console-log-level .console-message-text {
color:green;
}