From 9ae2c70077b7c333cf5abb37f6a984d8f018059d Mon Sep 17 00:00:00 2001 From: tummychow Date: Fri, 16 Feb 2018 13:58:16 -0800 Subject: make all stack breakpoints into warnings --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 289da84..f548984 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -120,13 +120,13 @@ fn working_stack<'repo>( for rev in revwalk { let commit = repo.find_commit(rev?)?; if commit.parents().len() > 1 { - debug!(logger, "merge commit found"; "commit" => commit.id().to_string()); + warn!(logger, "merge commit found"; "commit" => commit.id().to_string()); break; } if commit.author().name_bytes() != sig.name_bytes() || commit.author().email_bytes() != sig.email_bytes() { - debug!(logger, "foreign author found"; "commit" => commit.id().to_string()); + warn!(logger, "foreign author found"; "commit" => commit.id().to_string()); break; } if ret.len() == max_stack(repo) { -- cgit v1.2.3