mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
chore: set tracing log to debug level
This commit is contained in:
parent
c74308999d
commit
fd135fb664
@ -10,6 +10,7 @@ pub fn init_flowy_core() -> AppFlowyCore {
|
|||||||
}
|
}
|
||||||
data_path.push("data");
|
data_path.push("data");
|
||||||
|
|
||||||
|
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(),
|
||||||
|
@ -60,11 +60,10 @@
|
|||||||
"windows": [
|
"windows": [
|
||||||
{
|
{
|
||||||
"fullscreen": false,
|
"fullscreen": false,
|
||||||
"height": 1000,
|
"height": 1200,
|
||||||
"resizable": true,
|
"resizable": true,
|
||||||
"title": "AppFlowy",
|
"title": "AppFlowy",
|
||||||
"width": 1200,
|
"width": 1200
|
||||||
"transparent": true
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -11,11 +11,9 @@ import {
|
|||||||
makeSingleSelectCellController,
|
makeSingleSelectCellController,
|
||||||
openTestDatabase,
|
openTestDatabase,
|
||||||
} from './DatabaseTestHelper';
|
} from './DatabaseTestHelper';
|
||||||
import assert from 'assert';
|
|
||||||
import { SelectOptionBackendService } from '../../stores/effects/database/cell/select_option_bd_svc';
|
import { SelectOptionBackendService } from '../../stores/effects/database/cell/select_option_bd_svc';
|
||||||
import { TypeOptionController } from '../../stores/effects/database/field/type_option/type_option_controller';
|
import { TypeOptionController } from '../../stores/effects/database/field/type_option/type_option_controller';
|
||||||
import { None, Some } from 'ts-results';
|
import { None, Some } from 'ts-results';
|
||||||
import { TypeOptionBackendService } from '../../stores/effects/database/field/type_option/type_option_bd_svc';
|
|
||||||
import { RowBackendService } from '../../stores/effects/database/row/row_bd_svc';
|
import { RowBackendService } from '../../stores/effects/database/row/row_bd_svc';
|
||||||
|
|
||||||
export const TestCreateGrid = () => {
|
export const TestCreateGrid = () => {
|
||||||
|
@ -27,7 +27,7 @@ export async function {{ event_func_name }}(): Promise<Result<{{ output_deserial
|
|||||||
console.log({{ event_func_name }}.name, object);
|
console.log({{ event_func_name }}.name, object);
|
||||||
return Ok(object);
|
return Ok(object);
|
||||||
{%- else %}
|
{%- else %}
|
||||||
return Ok.EMPTYDatabaseNotification;
|
return Ok.EMPTY;
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
} else {
|
} else {
|
||||||
let error = {{ error_deserializer }}.deserializeBinary(result.payload);
|
let error = {{ error_deserializer }}.deserializeBinary(result.payload);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user