Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into use-curr-dir
Browse files Browse the repository at this point in the history
  • Loading branch information
de-sh committed Jul 28, 2023
2 parents 7a4cb75 + 8c12bb7 commit b38c9c3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions uplink/src/base/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ use std::{collections::HashMap, fmt::Debug};

use serde::{Deserialize, Serialize};

#[cfg(any(target_os = "linux"))]
#[cfg(target_os = "linux")]
use crate::collector::journalctl::JournalCtlConfig;
#[cfg(any(target_os = "android"))]
#[cfg(target_os = "android")]
use crate::collector::logcat::LogcatConfig;

use self::bridge::stream::MAX_BUFFER_SIZE;
Expand Down Expand Up @@ -233,8 +233,8 @@ pub struct Config {
pub action_redirections: HashMap<String, String>,
#[serde(default)]
pub ignore_actions_if_no_clients: bool,
#[cfg(any(target_os = "linux"))]
#[cfg(target_os = "linux")]
pub logging: Option<JournalCtlConfig>,
#[cfg(any(target_os = "android"))]
#[cfg(target_os = "android")]
pub logging: Option<LogcatConfig>,
}

0 comments on commit b38c9c3

Please sign in to comment.