Skip to content

Commit

Permalink
Debug build Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
nazar-pc committed Aug 9, 2024
1 parent 5098b66 commit 26431e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -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,
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 26431e2

Please sign in to comment.