Skip to content

Commit 0cc1c32

Browse files
committed
Move log message to the debug level
1 parent 98d09e7 commit 0cc1c32

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)