Add .Send() call to logs without .Msg() call

This commit is contained in:
M. Mert Yildiran
2022-11-29 03:55:50 +03:00
parent 36594d70ea
commit 4892c9dbdc
9 changed files with 13 additions and 13 deletions

View File

@@ -44,7 +44,7 @@ func init() {
defaultTapConfig := configStructs.TapConfig{}
if err := defaults.Set(&defaultTapConfig); err != nil {
log.Debug().Err(err)
log.Debug().Err(err).Send()
}
tapCmd.Flags().Uint16P(configStructs.GuiPortTapName, "p", defaultTapConfig.GuiPort, "Provide a custom port for the web interface webserver")