mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 20:29:18 +00:00
LibJS: Add console.{debug,info,warn,error}()
This commit is contained in:
parent
b1e8cc22bd
commit
dd7796515f
Notes:
sideshowbarker
2024-07-19 07:40:22 +09:00
Author: https://github.com/linusg
Commit: dd7796515f
Pull-request: https://github.com/SerenityOS/serenity/pull/1763
3 changed files with 56 additions and 7 deletions
5
Base/home/anon/js/console.js
Normal file
5
Base/home/anon/js/console.js
Normal 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");
|
Loading…
Add table
Add a link
Reference in a new issue