Skip to content

Commit df9a83a

Browse files
Print out the "Created semaphore" message only in verbose mode (#10936)
* print out the "Created semaphore" message only in verbose mode (#10885) * fixup! Update pr-10936.md --------- Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
1 parent 3e435ce commit df9a83a

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

cabal-install/src/Distribution/Client/JobControl.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ newSemaphoreJobControl _ n
184184
error $ "newParallelJobControl: not a sensible number of jobs: " ++ show n
185185
newSemaphoreJobControl verbosity maxJobLimit = do
186186
sem <- freshSemaphore "cabal_semaphore" maxJobLimit
187-
notice verbosity $
187+
info verbosity $
188188
"Created semaphore called "
189189
++ getSemaphoreName (semaphoreName sem)
190190
++ " with "

changelog.d/pr-10936.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
synopsis: Print out the "Created semaphore" message only in verbose mode (#10885)
3+
packages: [cabal-install]
4+
prs: 10936
5+
issues: 10885
6+
---

0 commit comments

Comments
 (0)