Add debug only guard for the --wait-dbg flag

This commit is contained in:
vsrs 2021-01-27 00:09:15 +03:00
parent 185cd736a6
commit ad603c3867
2 changed files with 4 additions and 1 deletions

View File

@ -52,7 +52,8 @@ FLAGS:
--log-file <PATH> Log to the specified file instead of stderr
--no-buffering Flush log records to the file immediately
--wait-dbg Wait until a debugger is attached to
--wait-dbg Wait until a debugger is attached to.
The flag is valid for debug builds only
ENVIRONMENTAL VARIABLES:
RA_LOG Set log filter in env_logger format

View File

@ -29,6 +29,8 @@ fn main() {
fn try_main() -> Result<()> {
let args = args::Args::parse()?;
#[cfg(debug_assertions)]
if args.wait_dbg || env::var("RA_WAIT_DBG").is_ok() {
#[allow(unused_mut)]
let mut d = 4;