Skip to content

Commit

Permalink
Merge branch 'develop' into steam-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphiiko committed Dec 26, 2023
2 parents fc790f0 + ef47b80 commit f9841a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src-core/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -195,11 +195,11 @@ fn configure_tauri_plugin_deep_link(app_handle: AppHandle) {

fn configure_tauri_plugin_log() -> TauriPlugin<Wry> {
#[cfg(debug_assertions)]
const LOG_TARGETS = [LogTarget::LogDir, LogTarget::Stdout, LogTarget::Webview];
const LOG_TARGETS: [LogTarget; 3] = [LogTarget::LogDir, LogTarget::Stdout, LogTarget::Webview];
#[cfg(debug_assertions)]
const LOG_LEVEL: LevelFilter = LevelFilter::Info;
#[cfg(not(debug_assertions))]
const LOG_TARGETS = [LogTarget::LogDir, LogTarget::Stdout];
const LOG_TARGETS: [LogTarget; 3] = [LogTarget::LogDir, LogTarget::Stdout];
#[cfg(not(debug_assertions))]
const LOG_LEVEL: LevelFilter = LevelFilter::Info;

Expand Down

0 comments on commit f9841a7

Please sign in to comment.