Code Monkey home page Code Monkey logo

slf4hx's Introduction

SLF4HX is a lightweight logging framework based on SLF4J, an abstract logging facade for Java.

SLF4HX offers a robust, performant logging API that integrates easily with whatever output solution you have by means of an ILogBinding interface.

Note that this is an adaptation rather than a port; The framework differs heavily from SLF4J's architecture

package;
import com.furusystems.slf4hx.loggers.Logger;
import com.furusystems.slf4hx.Logging;
class Tests 
{
  	private static var L:Logger = Logging.getLogger(Tests); //First, create a logger object associated with this class
		public function new() 
		{
			//To log messages, we call specialized logging methods on the logger object             
			L.debug("Hello debug"); //These are general debugging messages (your commonplace traces)
			L.info("Hello info"); //Slightly more important messages, for instance dealing with application status etc
			L.warn("Hello warn"); //Something untowards has happened, but it's not critical
			L.error("Hello error"); //Something bad has happened! But the application can still recover...
			L.fatal("Hello fatal"); //Something REALLY BAD has happened. It's game over for your app.
		}
}

slf4hx's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.