parent
1177fa2ec0
commit
e23bbfddaa
3 changed files with 3 additions and 3 deletions
|
|
@ -1,5 +1,5 @@
|
|||
//! The `[fake_client]` is used to attach to a running server session
|
||||
//! and dispatch actions, that are specificed through the command line.
|
||||
//! and dispatch actions, that are specified through the command line.
|
||||
//! Multiple actions at the same time can be dispatched.
|
||||
use log::debug;
|
||||
use std::{fs, path::PathBuf, thread};
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@ pub enum ScreenInstruction {
|
|||
SwitchTabPrev(ClientId),
|
||||
ToggleActiveSyncTab(ClientId),
|
||||
CloseTab(ClientId),
|
||||
GoToTab(u32, Option<ClientId>), // this Option is a hacky workaround, please do not copy thie behaviour
|
||||
GoToTab(u32, Option<ClientId>), // this Option is a hacky workaround, please do not copy this behaviour
|
||||
ToggleTab(ClientId),
|
||||
UpdateTabName(Vec<u8>, ClientId),
|
||||
UndoRenameTab(ClientId),
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ pub fn configure_logger() {
|
|||
)
|
||||
.unwrap();
|
||||
|
||||
// plugin appender. To be used in loggin_pipe to forward stderr output from plugins. We do some formatting
|
||||
// plugin appender. To be used in logging_pipe to forward stderr output from plugins. We do some formatting
|
||||
// in logging_pipe to print plugin name as 'module' and plugin_id instead of thread.
|
||||
let log_plugin = RollingFileAppender::builder()
|
||||
.encoder(Box::new(PatternEncoder::new(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue