diff --git a/main.go b/main.go index ff479e8..28a4d4a 100644 --- a/main.go +++ b/main.go @@ -181,7 +181,6 @@ func logWorkflow(pipe io.ReadCloser, wg *sync.WaitGroup) { if(strings.HasPrefix(log, "Progress:")){ current_watch = *models.NewArgoLogs(watch_output) - fmt.Println("Status : " + current_watch.Status) workflowName = current_watch.Name if(!current_watch.Equals(previous_watch)){ wg.Add(1) @@ -205,7 +204,6 @@ func logPods(pipe io.ReadCloser,name string){ scanner := bufio.NewScanner(pipe) for scanner.Scan() { log := scanner.Text() - // fmt.Println(log) pods_logger.Info().Msg(log) }