add to changelog

This commit is contained in:
Isse 2024-02-27 13:49:48 +01:00 committed by Christof Petig
parent 5abc8e3a1d
commit 1891584477
2 changed files with 2 additions and 2 deletions

View File

@ -52,6 +52,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- In commands that reference assets you can now use `#name` and press tab to cycle through assets with that name.
- Allow moving and resizing the chat with left and right mouse button respectively
- Missing plugins are requested from the server and cached locally
- Support for adding spots in plugins
### Changed

View File

@ -182,8 +182,7 @@ impl PluginMgr {
match Self::from_assets() {
Ok(plugin_mgr) => plugin_mgr,
Err(e) => {
tracing::debug!(?e, "Failed to read plugins from assets");
tracing::info!("Plugins disabled, enable debug logging for more information.");
tracing::error!(?e, "Failed to read plugins from assets");
PluginMgr::default()
},
}