Skip to content

Commit

Permalink
Remove fmt.Print in config
Browse files Browse the repository at this point in the history
This causes issues with plugin staging as condor will assume this is a
classad being printed out when it in a shadow hook with the -l flag.
This needs to be removed or add some sort of check if this is used with
staging or the plugin
  • Loading branch information
joereuss12 committed Mar 19, 2024
1 parent bc31726 commit 46fb14e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,6 @@ func InitConfig() {
log.Errorf("Failed to access specified log file. Error: %v", err)
os.Exit(1)
}
fmt.Printf("Logging.LogLocation is set to %s. All logs are redirected to the log file.\n", logLocation)
log.SetOutput(f)
}

Expand Down

0 comments on commit 46fb14e

Please sign in to comment.