From 26431e264fe2a18697ee869ce36d0e14e2eafcbb Mon Sep 17 00:00:00 2001 From: Nazar Mokrynskyi Date: Fri, 9 Aug 2024 16:32:03 +0300 Subject: [PATCH] Debug build Windows --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 81b384d9..3237ca91 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,4 @@ -#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] +// #![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] #![feature( const_option, let_chains, @@ -48,7 +48,7 @@ const LOG_FILE_LIMIT_SIZE: usize = ByteSize::mib(10).as_u64() as usize; const LOG_READ_BUFFER: usize = ByteSize::mib(1).as_u64() as usize; /// If `true`, this means supervisor will not be able to capture logs from child application and logger needs to be in /// the child process itself, while supervisor will not attempt to read stdout/stderr at all -const WINDOWS_SUBSYSTEM_WINDOWS: bool = cfg!(all(windows, not(debug_assertions))); +const WINDOWS_SUBSYSTEM_WINDOWS: bool = false; type PosTableLegacy = ChiaTableLegacy; type PosTable = ChiaTable;