├── .dockerignore ├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── .goreleaser.yml ├── Dockerfile ├── LICENSE ├── README.md ├── array.go ├── array_test.go ├── flog.go ├── flog_test.go ├── flog_unix.go ├── flog_windows.go ├── go.mod ├── go.sum ├── log.go ├── log_test.go ├── main.go ├── option.go ├── option_test.go ├── random.go ├── random_test.go └── time.go /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/flog/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/flog/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/flog/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/flog/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/flog/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/flog/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/flog/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/flog/HEAD/README.md -------------------------------------------------------------------------------- /array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/flog/HEAD/array.go -------------------------------------------------------------------------------- /array_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/flog/HEAD/array_test.go -------------------------------------------------------------------------------- /flog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/flog/HEAD/flog.go -------------------------------------------------------------------------------- /flog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/flog/HEAD/flog_test.go -------------------------------------------------------------------------------- /flog_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/flog/HEAD/flog_unix.go -------------------------------------------------------------------------------- /flog_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/flog/HEAD/flog_windows.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/flog/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/flog/HEAD/go.sum -------------------------------------------------------------------------------- /log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/flog/HEAD/log.go -------------------------------------------------------------------------------- /log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/flog/HEAD/log_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/flog/HEAD/main.go -------------------------------------------------------------------------------- /option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/flog/HEAD/option.go -------------------------------------------------------------------------------- /option_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/flog/HEAD/option_test.go -------------------------------------------------------------------------------- /random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/flog/HEAD/random.go -------------------------------------------------------------------------------- /random_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/flog/HEAD/random_test.go -------------------------------------------------------------------------------- /time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingrammer/flog/HEAD/time.go --------------------------------------------------------------------------------