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

@@ -41,7 +41,7 @@ func init() {
defaultLogsConfig := configStructs.LogsConfig{}
if err := defaults.Set(&defaultLogsConfig); err != nil {
log.Debug().Err(err)
log.Debug().Err(err).Send()
}
logsCmd.Flags().StringP(configStructs.FileLogsName, "f", defaultLogsConfig.FileStr, "Path for zip file (default current <pwd>\\kubeshark_logs.zip)")