Skip to content

Commit

Permalink
More concise error messages (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
DilumAluthge authored Mar 24, 2021
1 parent 9e83b87 commit 7dad4ea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/GitRepl.jl
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ function __init__()
gitrepl()
catch ex
msg = "Unable to automatically initialize the Git REPL mode"
@error(msg, exception=(ex, catch_backtrace()))
@debug(msg, exception=(ex, catch_backtrace()))
@warn(msg)
end
return nothing
end
Expand Down

2 comments on commit 7dad4ea

@DilumAluthge
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/32592

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.0.0 -m "<description of version>" 7dad4ea64f64332fef228674a729a65fee035efd
git push origin v1.0.0

Please sign in to comment.