Skip to content

Commit

Permalink
[WOR-1385] Lower FP monitor log msgs to warn (#2649)
Browse files Browse the repository at this point in the history
  • Loading branch information
aherbst-broad authored Dec 4, 2023
1 parent dcd8c2a commit 636c101
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class FastPassMonitor private (dataSource: SlickDataSource,
errors.foreach { errorTuple =>
val (error, grants) = errorTuple
val users = grants.map(_.accountEmail.value).toSet.mkString("(", ", ", ")")
logger.error(
logger.warn(
s"Encountered error while removing FastPass for users: $users in ${googleProjectId.value}. Continuing sweep.",
error
)
Expand All @@ -102,7 +102,7 @@ class FastPassMonitor private (dataSource: SlickDataSource,
}
.cleanUp {
case Some(e) =>
logger.error(
logger.warn(
s"Encountered an error while removing FastPass grants in ${googleProjectId.value}. Continuing sweep.",
e
)
Expand Down

0 comments on commit 636c101

Please sign in to comment.