main
Alexander Kimmig 2025-10-13 16:57:31 +00:00
parent df6505de3c
commit a5781aa7ab
1 changed files with 2 additions and 1 deletions

View File

@ -5,7 +5,8 @@ const c=(function(oldCons){
return { return {
log: function(text){ log: function(text){
oldCons.log(text); oldCons.log(text);
_loggerdata += text + "\n" if (_loggerdata !== "") _loggerdata += "\n"
_loggerdata += text
}, },
info: function (text) { info: function (text) {
oldCons.info(text); oldCons.info(text);