Skip to content

Simple logger that overrides console.log and let's you inject it in a canvas

License

Notifications You must be signed in to change notification settings

topheman/SoftLogger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

SoftLogger

Simple logger that overrides console.log and let's you inject it in a canvas (or wherever you want).

Example using SoftLogger : http://topheman.github.io/boxbox/boxbox/demos/topheman/smileyFaces/demo.html

Instanciation :

//retrieve your canvas
var canvas = document.getElementById('myCanvas');
var ctx = canvas.getContext('2d');

//instanciate your logger
var logger = SoftLogger.getInstance({
    fitToCanvas:true,
    canvas: canvas,
    ctxOptions : {
        x: 10,
        y: 10
    }
});

//then, in your animation/game loop, use the draw method
logger.draw(ctx);

Methods

SoftLogger.getInstance(options)

.draw(ctx)

.toggleConsole()

.getLogs()

About

Simple logger that overrides console.log and let's you inject it in a canvas

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published