diff options
| author | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2022-11-03 16:54:40 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-03 16:54:40 -0700 |
| commit | 31a339cd75748b96a792d9f62b7c94c4d180ec2e (patch) | |
| tree | fb1bdcc4b5c77975e3797c94a3f509059e8d4a4b /go.mod | |
| parent | daffb50bd98caf31813b2eaebee4f95d20caf9b7 (diff) | |
| parent | 4434fc431bef6b49b25ba5c5a0fd76b950c78ae1 (diff) | |
Merge pull request #67 from jhalter/add_log_to_file_option
Add optional logging to file
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -9,10 +9,12 @@ require ( github.com/stretchr/testify v1.7.1 go.uber.org/zap v1.21.0 golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e + gopkg.in/natefinch/lumberjack.v2 v2.0.0 gopkg.in/yaml.v3 v3.0.1 ) require ( + github.com/BurntSushi/toml v1.2.1 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/gdamore/encoding v1.0.0 // indirect github.com/go-playground/locales v0.14.0 // indirect |