Skip to content

Commit

Permalink
[7.11] [Application Usage] Rollups: log.debug instead of log.warn (#8…
Browse files Browse the repository at this point in the history
  • Loading branch information
afharo authored Jan 11, 2021
1 parent 0afda39 commit df0d415
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ export async function rollDailyData(logger: Logger, savedObjectsClient?: ISavedO
}
} while (toCreate.size > 0);
} catch (err) {
logger.warn(`Failed to rollup transactional to daily entries`);
logger.warn(err);
logger.debug(`Failed to rollup transactional to daily entries`);
logger.debug(err);
}
}

Expand Down Expand Up @@ -237,7 +237,7 @@ export async function rollTotals(logger: Logger, savedObjectsClient?: ISavedObje
),
]);
} catch (err) {
logger.warn(`Failed to rollup daily entries to totals`);
logger.warn(err);
logger.debug(`Failed to rollup daily entries to totals`);
logger.debug(err);
}
}

0 comments on commit df0d415

Please sign in to comment.