diff options
author | zeripath <art27@cantab.net> | 2019-12-25 15:44:57 +0000 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2019-12-25 23:44:57 +0800 |
commit | 3e166bd0550eceade275023616a02a8bf12d58c9 (patch) | |
tree | 7500cafa6a9b8ec65939919bc9c63a3bb50f2851 /cmd/keys.go | |
parent | 8b2f29c0d2e571b45f004646d3b5e6bac1c2c419 (diff) | |
download | gitea-3e166bd0550eceade275023616a02a8bf12d58c9.tar.gz gitea-3e166bd0550eceade275023616a02a8bf12d58c9.zip |
Add debug option to serv to help debug problems (#9492)
* Add debug option to serv to help debug problems
* fixup! Add debug option to serv to help debug problems
Diffstat (limited to 'cmd/keys.go')
-rw-r--r-- | cmd/keys.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/keys.go b/cmd/keys.go index c0818fd2d2..7456815cd7 100644 --- a/cmd/keys.go +++ b/cmd/keys.go @@ -62,7 +62,7 @@ func runKeys(c *cli.Context) error { return errors.New("No key type and content provided") } - setup("keys.log") + setup("keys.log", false) authorizedString, err := private.AuthorizedPublicKeyByContent(content) if err != nil { |