You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- docker entrypoint should not force the usage of 'verbose' mode
- docker entrypoint uses 'debug' log level as default if not defined
- verbose flag will override any other passed log level, not only 'info'
Signed-off-by: David Pordomingo <[email protected]>
Copy file name to clipboardExpand all lines: cmd/gitbase/command/server.go
+13-6
Original file line number
Diff line number
Diff line change
@@ -83,8 +83,8 @@ type Server struct {
83
83
MetricsPortint`long:"metrics-port" env:"GITBASE_METRICS_PORT" default:"2112" description:"Port where the server is going to expose prometheus metrics"`
84
84
ReadOnlybool`short:"r" long:"readonly" description:"Only allow read queries. This disables creating and deleting indexes as well. Cannot be used with --user-file." env:"GITBASE_READONLY"`
85
85
SkipGitErrorsbool// SkipGitErrors disables failing when Git errors are found.
86
-
Verbosebool`short:"v" description:"Activates the verbose mode"`
0 commit comments