Skip to content

Commit

Permalink
fix: logInfo -> logVerbose
Browse files Browse the repository at this point in the history
Co-authored-by: Mac Malone <[email protected]>
  • Loading branch information
austinletson and tydeu authored Jul 24, 2024
1 parent 5c9f488 commit dc3e1bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lake/Lake/CLI/Init.lean
Original file line number Diff line number Diff line change
Expand Up @@ -308,11 +308,11 @@ def createLeanActionWorkflow (dir : FilePath) : LogIO PUnit := do
let workflowDir := dir / ".github" / "workflows"
let workflowFile := workflowDir / "lean_action_ci.yml"
if (← workflowFile.pathExists) then
logWarning "lean-action CI workflow already exists"
logVerbose "lean-action CI workflow already exists"
return
IO.FS.createDirAll workflowDir
IO.FS.writeFile workflowFile leanActionWorkflowContents
logInfo s!"created lean-action CI workflow at '{workflowFile}'"
logVerbose s!"created lean-action CI workflow at '{workflowFile}'"

def init (name : String) (tmp : InitTemplate) (lang : ConfigLang) (env : Lake.Env) (cwd : FilePath := ".") : LogIO PUnit := do
let name ← id do
Expand Down

0 comments on commit dc3e1bf

Please sign in to comment.