(msg: String)
| 159 | |
| 160 | impl LoadingRecord { |
| 161 | pub fn success(msg: String) -> Self { |
| 162 | let timestamp = chrono::Local::now().format("%Y:%H:%S").to_string(); |
| 163 | LoadingRecord::Success(timestamp, msg) |
| 164 | } |
| 165 | |
| 166 | pub fn warn(msg: String) -> Self { |
| 167 | let timestamp = chrono::Local::now().format("%Y:%H:%S").to_string(); |
no test coverage detected