Skip to the content.

Structure logs for human and computer

Get pretty good readability for human, computer, grep, Logstash… Even if the raw data is not being optimal for either, this can be improved by diplaying a reformatted colorized output (human) or by exporting to JSON/CBOR/…

Log level meaning

Depending on the historical engineering culture, systems share similar log levels, but with some differences. Below is a great list of log levels that your application may use:

Level Short name Description
FATAL FAT La source de l’arrêt de l’application, utile pour trouver l’origine de l’arrêt dans tous les logs
ERROR ERR Une erreur que le développeur ne sait pas comment la gérer => Quand on aura une bonne implémentation, cela deviendra une alerte (WARNING)
WARNING WRN Une erreur que l’application sait gérer
NOTICE NOT Un changement d’état de l’application (Init, Ready, Stopping…) ou des données (Open, Frozen…), ceci peut être représenté par des émoticônes comme implémenté par Emodebug
INFO INF  
DEBUG DBG  
TRACE TRC Chaque fonction, avec optionnellement ses paramètres INPUT et sa sortie OUTPUT

See more about syslog and Log4J log levels

🚀

The syslog protocol

The syslog is defined by the RFC 5424. The data is structured within each log line as the following:

Structured data in one log line

See how your application can structure log data in order to be powerfully processed by log analysis tools.