Merge pull request #1034 from skriss/tweak-logging

lower some noisy logs to debug level
pull/1040/head
KubeKween 2018-11-05 05:40:38 -08:00 committed by GitHub
commit becd075000
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -122,7 +122,7 @@ func shouldSync(location *arkv1api.BackupStorageLocation, now time.Time, backupS
}
func (c *backupSyncController) run() {
c.logger.Info("Checking for backup storage locations to sync into cluster")
c.logger.Debug("Checking for existing backup storage locations to sync into cluster")
locations, err := c.backupStorageLocationLister.BackupStorageLocations(c.namespace).List(labels.Everything())
if err != nil {

View File

@ -246,7 +246,7 @@ func (c *scheduleController) submitBackupIfDue(item *api.Schedule, cronSchedule
)
if !isDue {
log.WithField("nextRunTime", nextRunTime).Info("Schedule is not due, skipping")
log.WithField("nextRunTime", nextRunTime).Debug("Schedule is not due, skipping")
return nil
}