mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
chore: cell data operation (#1656)
* chore: get all cells for specific field * chore: auto format clippy wanrings * chore: get cells for specific field type
This commit is contained in:
@ -67,8 +67,8 @@ impl Builder {
|
||||
// let _ = set_global_default(subscriber).map_err(|e| format!("{:?}", e))?;
|
||||
// }
|
||||
|
||||
let _ = set_global_default(subscriber).map_err(|e| format!("{:?}", e))?;
|
||||
let _ = LogTracer::builder()
|
||||
set_global_default(subscriber).map_err(|e| format!("{:?}", e))?;
|
||||
LogTracer::builder()
|
||||
.with_max_level(LevelFilter::Trace)
|
||||
.init()
|
||||
.map_err(|e| format!("{:?}", e))?;
|
||||
@ -84,7 +84,7 @@ mod tests {
|
||||
// run cargo test --features="use_bunyan" or cargo test
|
||||
#[test]
|
||||
fn test_log() {
|
||||
let _ = Builder::new("flowy", ".").env_filter("debug").build().unwrap();
|
||||
Builder::new("flowy", ".").env_filter("debug").build().unwrap();
|
||||
tracing::info!("😁 tracing::info call");
|
||||
log::debug!("😁 log::debug call");
|
||||
|
||||
|
Reference in New Issue
Block a user