Skip to content

Commit 30669f1

Browse files
committed
[core] Reduce verbosity of recurrent log messages
1 parent 0e4a278 commit 30669f1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

core/task/constraint/attributes.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ func (attrs Attributes) Satisfy(cts Constraints) (ok bool) {
6868
}
6969

7070
for _, constraint := range cts {
71-
log.WithField("constraint", constraint.String()).Debug("processing constraint")
71+
log.WithField("constraint", constraint.String()).Trace("processing constraint")
7272
switch constraint.Operator {
7373
case Equals:
7474
var value string

core/task/scheduler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -849,7 +849,7 @@ func (state *schedulerState) statusUpdate() events.HandlerFunc {
849849
"task": s.TaskID.Value,
850850
"state": s.GetState().String(),
851851
"message": s.GetMessage(),
852-
}).Debug("task status update received")
852+
}).Trace("task status update received")
853853
}
854854

855855
// What's the new task state?

0 commit comments

Comments
 (0)