Skip to content

Commit 69f8c8e

Browse files
committed
[IMP] server: logs cleaning
1 parent d3785cc commit 69f8c8e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/warn_supsect_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
script: |
4242
let body = "";
4343
if (process.env.file_changed === 'true') {
44-
body += "⚠️ The file 'Cargo.toml or caonstant.rs' has been modified in this PR. Please review the changes carefully.\n";
44+
body += "⚠️ The file 'Cargo.toml or constant.rs' has been modified in this PR. Please review the changes carefully.\n";
4545
}
4646
if (process.env.println_found === 'true') {
4747
body += "⚠️ A 'println!(' statement was found in the commit. Please ensure debug statements are removed before merging.\n";

server/src/main.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@ fn main() {
7272
info!("Server version: {}", EXTENSION_VERSION);
7373
info!("Compiled setting: DEBUG_ODOO_BUILDER: {}", DEBUG_ODOO_BUILDER);
7474
info!("Compiled setting: DEBUG_MEMORY: {}", DEBUG_MEMORY);
75+
info!("Compiled setting: DEBUG_THREADS: {}", DEBUG_THREADS);
76+
info!("Compiled setting: DEBUG_STEPS: {}", DEBUG_STEPS);
77+
info!("Compiled setting: DEBUG_REBUILD_NOW: {}", DEBUG_REBUILD_NOW);
7578
info!("Operating system: {}", std::env::consts::OS);
7679
info!("");
7780

0 commit comments

Comments
 (0)