minor: Silence noisy set_error log
Outside of debugging tests, it makes no sense to log this.
This commit is contained in:
parent
b606c05246
commit
6bfe1ddc53
1 changed files with 1 additions and 1 deletions
|
@ -1147,7 +1147,7 @@ impl Editor {
|
|||
#[inline]
|
||||
pub fn set_error<T: Into<Cow<'static, str>>>(&mut self, error: T) {
|
||||
let error = error.into();
|
||||
log::error!("editor error: {}", error);
|
||||
log::debug!("editor error: {}", error);
|
||||
self.status_msg = Some((error, Severity::Error));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue