Make more config flags non-debug.

* Only performance-sensitive flags should be debug only. Otherwise there's no
  strong reason to limit these to non-official builds.
This commit is contained in:
baldurk
2020-10-01 17:48:35 +01:00
parent d863885373
commit 8f6359059b
9 changed files with 25 additions and 27 deletions
+2 -2
View File
@@ -39,8 +39,8 @@ RDOC_CONFIG(uint32_t, Android_MaxConnectTimeout, 30,
"Maximum time in seconds to try connecting to the target app before giving up. "
"Useful primarily for apps that take a very long time to start up.");
RDOC_DEBUG_CONFIG(bool, Android_Debug_ProcessLaunch, false,
"Output verbose debug logging messages when launching android apps.");
RDOC_CONFIG(bool, Android_Debug_ProcessLaunch, false,
"Output verbose debug logging messages when launching android apps.");
namespace Android
{