1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-17 15:45:08 +00:00

LibJS: Add console.{debug,info,warn,error}()

This commit is contained in:
Linus Groh 2020-04-12 17:00:06 +01:00 committed by Andreas Kling
parent b1e8cc22bd
commit dd7796515f
3 changed files with 56 additions and 7 deletions

View file

@ -0,0 +1,5 @@
console.log("I am a generic log message");
console.debug("I am a debug log message");
console.info("I am an info log message");
console.warn("I am a warning log message");
console.error("I am an error log message");