mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-08 16:42:15 +01:00
18 lines
364 B
Go
18 lines
364 B
Go
/*
|
|
Package xlog defines a standard logger
|
|
for the application.
|
|
|
|
It uses structured logging thanks to
|
|
https://github.com/sirupsen/logrus.
|
|
|
|
All messages have at least two fields:
|
|
|
|
A "trace" field which helps to identify
|
|
messages belonging to the same context.
|
|
|
|
An "op" field which helps to identify
|
|
the logical operation associated
|
|
with the message.
|
|
*/
|
|
package xlog
|