From 77170b9a88bfeb720fd650c304994ed6b6ce9c4c Mon Sep 17 00:00:00 2001 From: pacholoamit Date: Sun, 26 May 2024 12:00:22 +0800 Subject: [PATCH] fix: config debug aseertion for log plugin --- CHANGELOG.md | 1 + src-tauri/src/main.rs | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7971536d..9a163df5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/). ## 0.9.4 +- Improve Theming options - Fix CPU information not displaying ## 0.9.3 diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index 99e78a97..822db608 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -32,7 +32,6 @@ use tauri_plugin_autostart::MacosLauncher; use tauri_plugin_log::LogTarget; fn build_and_run_app(app: AppState) { - #[cfg(debug_assertions)] let log_plugin = tauri_plugin_log::Builder::default() .targets([LogTarget::Folder(cache_dir().unwrap()), LogTarget::Stdout]) .build();