From 726928b7ba2128f5488388e28f4008b1f9e55f45 Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Fri, 28 Aug 2020 23:54:45 +0200 Subject: [PATCH] fix logging --- asyncgit/src/sync/commit.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asyncgit/src/sync/commit.rs b/asyncgit/src/sync/commit.rs index b24e7ce5..de96c8bc 100644 --- a/asyncgit/src/sync/commit.rs +++ b/asyncgit/src/sync/commit.rs @@ -9,7 +9,7 @@ pub fn amend( id: CommitId, msg: &str, ) -> Result { - scope_time!("commit"); + scope_time!("amend"); let repo = repo(repo_path)?; let commit = repo.find_commit(id.into())?;