Write console.debug messages to test log (#3223)

This commit is contained in:
Gyeongjae Choi 2022-11-04 09:38:15 +09:00 committed by GitHub
parent d3b0d7f584
commit 950bc8b182
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -17,6 +17,9 @@
console.error = function (message) { console.error = function (message) {
window.logs.push(message); window.logs.push(message);
}; };
console.debug = function (message) {
window.logs.push(message);
};
</script> </script>
<script src="./pyodide.js"></script> <script src="./pyodide.js"></script>
</head> </head>