From 40dbdaa5e194b760d2adcaae60b50bef1fa4cf89 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 18 Sep 2016 14:44:08 +0200 Subject: [PATCH] Fix git hook registration fail warn message. --- libimagrt/src/runtime.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libimagrt/src/runtime.rs b/libimagrt/src/runtime.rs index 05eb3506..3e8ed7d8 100644 --- a/libimagrt/src/runtime.rs +++ b/libimagrt/src/runtime.rs @@ -147,7 +147,7 @@ impl<'a> Runtime<'a> { if let Err(e) = store.register_hook(position, &String::from(aspectname), hook) { if e.err_type() == StoreErrorKind::HookRegisterError { trace_error_dbg(&e); - warn!("Registering debug hook with store failed"); + warn!("Registering git hook with store failed"); } else { trace_error(&e); };