mirror of
https://github.com/debug-js/debug.git
synced 2025-12-08 20:59:48 +00:00
25 lines
436 B
HTML
25 lines
436 B
HTML
<html>
|
|
<head>
|
|
<title>debug()</title>
|
|
<script src="../debug.js"></script>
|
|
<script>
|
|
// type debug.enable('*') in
|
|
// the console and refresh :)
|
|
|
|
a = debug('worker:a');
|
|
b = debug('worker:b');
|
|
|
|
setInterval(function(){
|
|
a('doing some work');
|
|
}, 1000);
|
|
|
|
setInterval(function(){
|
|
a('doing some work');
|
|
}, 1200);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
</body>
|
|
</html>
|