mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
chore: set log level & remove empty line
This commit is contained in:
parent
85f36ad877
commit
25707edbdd
@ -10,7 +10,7 @@ pub fn init_flowy_core() -> AppFlowyCore {
|
|||||||
}
|
}
|
||||||
data_path.push("data");
|
data_path.push("data");
|
||||||
|
|
||||||
std::env::set_var("RUST_LOG", "trace");
|
std::env::set_var("RUST_LOG", "debug");
|
||||||
let server_config = get_client_server_configuration().unwrap();
|
let server_config = get_client_server_configuration().unwrap();
|
||||||
let config = AppFlowyCoreConfig::new(
|
let config = AppFlowyCoreConfig::new(
|
||||||
data_path.to_str().unwrap(),
|
data_path.to_str().unwrap(),
|
||||||
|
@ -66,7 +66,6 @@ impl DatabaseViews {
|
|||||||
pub async fn close(&self, view_id: &str) {
|
pub async fn close(&self, view_id: &str) {
|
||||||
if let Some(view_editor) = self.view_editors.write().await.remove(view_id) {
|
if let Some(view_editor) = self.view_editors.write().await.remove(view_id) {
|
||||||
view_editor.close().await;
|
view_editor.close().await;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user