Skip to content

Commit

Permalink
tidy and fix ci script
Browse files Browse the repository at this point in the history
  • Loading branch information
martyall committed Jan 20, 2025
1 parent 4629dd6 commit a076d75
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/test-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ jobs:
- name: build
run: |
npm install
npm run chanterelle-build
npm run build
working-directory: example
- name: lint
Expand Down
6 changes: 4 additions & 2 deletions src/Chanterelle/Logging.purs
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,10 @@ log
log level msg = do
currentLevel <- liftEffect $ getLogLevelWithDefault Info
when (level >= currentLevel) $
let (Logger log) = fancyColorLogger
in log { level, msg }
let
(Logger log) = fancyColorLogger
in
log { level, msg }

logSolcError
:: forall m
Expand Down

0 comments on commit a076d75

Please sign in to comment.