mirror of https://github.com/hashicorp/consul
agent: Adding debug log messages
parent
903789aee4
commit
cc51bf6926
|
@ -341,6 +341,8 @@ func (l *localState) syncChanges() error {
|
||||||
if err := l.syncService(id); err != nil {
|
if err := l.syncService(id); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
l.logger.Printf("[DEBUG] agent: Service '%s' in sync", id)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -354,6 +356,8 @@ func (l *localState) syncChanges() error {
|
||||||
if err := l.syncCheck(id); err != nil {
|
if err := l.syncCheck(id); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
l.logger.Printf("[DEBUG] agent: Check '%s' in sync", id)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
|
|
Loading…
Reference in New Issue