Update logging parameters

This commit is contained in:
Kamil Trzciński 2022-12-15 21:46:33 +01:00
parent 727d4b82de
commit 5375850142
3 changed files with 20 additions and 6 deletions

View file

@ -46,6 +46,18 @@ namespace CommonHelpers
}
}
public static bool IsProductionBuild
{
get
{
#if PRODUCTION_BUILD
return true;
#else
return false;
#endif
}
}
public static void OnUninstall(Action action)
{
if (Uninstall)