Skip to content

Commit

Permalink
[core] Log output consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
teo committed Jul 13, 2023
1 parent 5df0dd4 commit 6b18df6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/integration/trg/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -769,7 +769,7 @@ func (p *Plugin) CallStack(data interface{}) (stack map[string]interface{}) {
p.pendingRunStops[envId] = runNumber64
log.WithField("partition", envId).
WithField("run", runNumber64).
Debug("TRG RunStart success")
Info("TRG RunStart success")

trgStartTime := strconv.FormatInt(time.Now().UnixMilli(), 10)
parentRole, ok := call.GetParentRole().(callable.ParentRole)
Expand Down Expand Up @@ -880,7 +880,7 @@ func (p *Plugin) CallStack(data interface{}) (stack map[string]interface{}) {
delete(p.pendingRunStops, envId)
log.WithField("partition", envId).
WithField("run", runNumber64).
Debug("TRG RunStop success")
Info("TRG RunStop success")

trgEndTime := strconv.FormatInt(time.Now().UnixMilli(), 10)
parentRole, ok := call.GetParentRole().(callable.ParentRole)
Expand Down

0 comments on commit 6b18df6

Please sign in to comment.