The Wayback Machine - https://web.archive.org/web/20201023223956/https://github.com/onivim/timber
Skip to content
master
Go to file
Code
This branch is 3 commits behind glennsl:master.

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

timber

Opinionated logging framework based on @dbuenzli/logs

Screenshot

Features

  • Colorized output (except on Windows, because Windows)
  • Namespaces, filterable and colorized by hash
  • Delta timestamp showing time since previous message
  • Console and file reporter out-of-the-box
  • TRACE level
  • Very simple API

Example

Timber.App.enable();
Timber.App.setLevel(Timber.Level.debug);
Timber.App.setLogFile("test.log");

module Log = (val Timber.Log.withNamespace("Timber"));

Log.trace("This won't be logged");

Log.infof(m => m("Formatting and lazy evaluation %i", Random.int(100)));

Log.error("Something went horribly wrong!");

About

Opinionated logging framework based on @dbuenzli/logs

Resources

License

Packages

No packages published
You can’t perform that action at this time.