From f144d97e0c6f35d8dcfded12c0671b1a49a50266 Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Thu, 9 Apr 2020 09:36:10 +0200 Subject: [PATCH] fix debug state ment leftover --- asyncgit/src/sync/hooks.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/asyncgit/src/sync/hooks.rs b/asyncgit/src/sync/hooks.rs index 2e948391..31cd6c2b 100644 --- a/asyncgit/src/sync/hooks.rs +++ b/asyncgit/src/sync/hooks.rs @@ -24,8 +24,6 @@ pub fn hooks_commit_msg( let file_path = file.path().to_str().unwrap(); - dbg!(&file_path); - let res = run_hook(repo_path, HOOK_COMMIT_MSG, &[&file_path]); if let HookResult::NotOk(e) = res {