mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-21 23:01:03 +00:00
Removed unconditional logging profile
This commit is contained in:
parent
7e4ad3de29
commit
191bf9a3dc
1 changed files with 1 additions and 1 deletions
|
|
@ -15,7 +15,7 @@ import (
|
|||
func NewLogger(config *config.AppConfig, rollrusHook string) *logrus.Entry {
|
||||
var log *logrus.Logger
|
||||
environment := "production"
|
||||
if true || config.Debug || os.Getenv("DEBUG") == "TRUE" { // TODO: remove true here
|
||||
if config.Debug || os.Getenv("DEBUG") == "TRUE" {
|
||||
environment = "development"
|
||||
log = newDevelopmentLogger(config)
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue