2011-02-19

Problem with log in Chrome Web Inspector

Finnaly found why logging doesn't work in Chrome (web inspector). So... problem was in fire bug for chrome, when I switched it off logging start to work in naitive chrome developer tool (web inspector).

BTW: to send smth. to console in web inspector use this js code in your web application:
<script type="text/javascript"> 
/*<![CDATA[*/
if(typeof(console)=='object')
{
console.group("Application Log");
console.log("Your message");
console.groupEnd();
}
/*]]>*/
</script>

Комментариев нет:

Отправить комментарий