my_log
v1.0.0
Published
A tool for logging
Downloads
2
Readme
log
Logging is always useful while writing codes.You can make it easier with log too.
log receives three parameters.
First one is what you want to log.
Second one is which font size (by pxls) you want to set.
And third one is color.
Examples
//simple
log("Not bad");
//with all options
log("done!", 30, "red");
//only with font size
log("Color would be black if you don't set", 80);
//using rgb
log("running", 24 ,"rgb(50,155,10)");