autocommit 2022-04-07 17:31:31 CEST
This commit is contained in:
parent
1d33088dba
commit
be32036824
200 changed files with 3267 additions and 2479 deletions
|
|
@ -1,16 +1,21 @@
|
|||
use crate::cli::{GlobalArgs, LogArgs};
|
||||
use crate::tools::tool_client::{Handle, ToolClient};
|
||||
use crate::utils::errorfmt::ErrorFmt;
|
||||
use crate::wire::{jay_compositor, jay_log_file};
|
||||
use bstr::{BString, ByteSlice};
|
||||
use jay_compositor::GetLogFile;
|
||||
use jay_log_file::Path;
|
||||
use std::cell::RefCell;
|
||||
use std::ops::Deref;
|
||||
use std::os::unix::process::CommandExt;
|
||||
use std::process;
|
||||
use std::process::Command;
|
||||
use std::rc::Rc;
|
||||
use {
|
||||
crate::{
|
||||
cli::{GlobalArgs, LogArgs},
|
||||
tools::tool_client::{Handle, ToolClient},
|
||||
utils::errorfmt::ErrorFmt,
|
||||
wire::{jay_compositor, jay_log_file},
|
||||
},
|
||||
bstr::{BString, ByteSlice},
|
||||
jay_compositor::GetLogFile,
|
||||
jay_log_file::Path,
|
||||
std::{
|
||||
cell::RefCell,
|
||||
ops::Deref,
|
||||
os::unix::process::CommandExt,
|
||||
process::{self, Command},
|
||||
rc::Rc,
|
||||
},
|
||||
};
|
||||
|
||||
pub fn main(global: GlobalArgs, args: LogArgs) {
|
||||
let tc = ToolClient::new(global.log_level.into());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue