summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortummychow <tummychow@users.noreply.github.com>2018-02-16 13:58:16 -0800
committertummychow <tummychow@users.noreply.github.com>2018-02-16 13:58:16 -0800
commit9ae2c70077b7c333cf5abb37f6a984d8f018059d (patch)
tree28504057b45410b8063ea500a77f98c11b341000
parent6735dcc5aa6ae90609a3c0f21ca38b8de4aed2dc (diff)
make all stack breakpoints into warnings
-rw-r--r--src/lib.rs4
1 files 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) {