Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 352 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 352 Bytes

logrus restraints

Log with logrus with restraints on frequency of logging.

Examples

logrus_restraints.WithTTL(200 * time.Millisecond).
	Infoln("this message will be logged not more often than every 200ms")
logrus_restraints.EveryN(5).Infoln("this message will be logged every 5 calls")