Skip to content

Commit

Permalink
Fix logging statement
Browse files Browse the repository at this point in the history
  • Loading branch information
olivergrabinski committed Oct 2, 2023
1 parent 9445739 commit 9fe5da9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ final class SearchScopeInitialization(
case rej =>
val str =
s"Failed to create the search view for project '${project.ref}' due to '${rej.getMessage}'."
IO.delay(logger.error(str)) >> IO.raiseError(ScopeInitializationFailed(str))
logger.error(str) >> IO.raiseError(ScopeInitializationFailed(str))
}
.named("createSearchView", "search")
}
Expand Down

0 comments on commit 9fe5da9

Please sign in to comment.