From 5a17875662d5e7ffa11af8f93bdc8a5bc1a9ac6c Mon Sep 17 00:00:00 2001 From: Arthur Lee Date: Tue, 30 Apr 2019 01:12:15 +0800 Subject: [PATCH] Add rollingwriter (#2494) * add rollingwriter * change the position --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 6912c8b7..a9bffd00 100644 --- a/README.md +++ b/README.md @@ -900,6 +900,7 @@ See [go-hardware](https://github.com/rakyll/go-hardware) for a comprehensive lis * [mlog](https://github.com/jbrodriguez/mlog) - Simple logging module for go, with 5 levels, an optional rotating logfile feature and stdout/stderr output. * [onelog](https://github.com/francoispqt/onelog) - Onelog is a dead simple but very efficient JSON logger. It is the fastest JSON logger out there in all scenario. Also, it is one of the logger with the lowest allocation. * [ozzo-log](https://github.com/go-ozzo/ozzo-log) - High performance logging supporting log severity, categorization, and filtering. Can send filtered log messages to various targets (e.g. console, network, mail). +* [rollingwriter](https://github.com/arthurkiller/rollingWriter) - RollingWriter is an auto-rotate `io.Writer` implementation with multi policies to provide log file rotation. * [seelog](https://github.com/cihub/seelog) - Logging functionality with flexible dispatching, filtering, and formatting. * [spew](https://github.com/davecgh/go-spew) - Implements a deep pretty printer for Go data structures to aid in debugging. * [stdlog](https://github.com/alexcesaro/log) - Stdlog is an object-oriented library providing leveled logging. It is very useful for cron jobs.