Home
last modified time | relevance | path

Searched refs:full_path (Results 1 – 2 of 2) sorted by relevance

/xiu/library/logger/src/
H A Dlogger.rs75 let full_path = format!("{path}/{file_name}.log"); in gen_log_file() localVariable
77 if !Path::new(&full_path).exists() { in gen_log_file()
79 Ok(File::create(full_path)?) in gen_log_file()
82 let file = OpenOptions::new().append(true).open(full_path)?; in gen_log_file()
/xiu/protocol/webrtc/src/http/
H A Dmod.rs129 let full_path = if let Some(parameters) = &self.path_parameters { in marshal() localVariable
134 let mut request_str = format!("{} {} {}\r\n", self.method, full_path, self.version); in marshal()