aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/keys.go
diff options
context:
space:
mode:
authorzeripath <art27@cantab.net>2019-12-25 15:44:57 +0000
committerLunny Xiao <xiaolunwen@gmail.com>2019-12-25 23:44:57 +0800
commit3e166bd0550eceade275023616a02a8bf12d58c9 (patch)
tree7500cafa6a9b8ec65939919bc9c63a3bb50f2851 /cmd/keys.go
parent8b2f29c0d2e571b45f004646d3b5e6bac1c2c419 (diff)
downloadgitea-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.go2
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 {