1.0.0 • Published 8 years ago

my_log v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

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)");