Skip to content

Commit 0c726a1

Browse files
authored
Merge pull request RustPython#5447 from isbm/isbm-move-exception-loglevel
Move log message to the debug level
2 parents f71eb55 + 0cc1c32 commit 0c726a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vm/src/frame.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1534,7 +1534,7 @@ impl ExecutingFrame<'_> {
15341534
.topmost_exception()
15351535
.ok_or_else(|| vm.new_runtime_error("No active exception to reraise".to_owned()))?,
15361536
};
1537-
info!("Exception raised: {:?} with cause: {:?}", exception, cause);
1537+
debug!("Exception raised: {:?} with cause: {:?}", exception, cause);
15381538
if let Some(cause) = cause {
15391539
exception.set_cause(cause);
15401540
}

0 commit comments

Comments
 (0)