From 6ade5026e91110c19b971740d862c1498fca5915 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Tue, 23 Mar 2021 21:27:11 -0400 Subject: [PATCH] More concise error messages --- src/GitRepl.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/GitRepl.jl b/src/GitRepl.jl index 55a0458..0a22bd9 100644 --- a/src/GitRepl.jl +++ b/src/GitRepl.jl @@ -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