forked from baron/baron-sso
레포 업데이트
This commit is contained in:
@@ -23,7 +23,10 @@ class LogPolicy {
|
||||
|
||||
static bool isProductionEnv(String? appEnv) {
|
||||
final env = (appEnv ?? '').trim().toLowerCase();
|
||||
return env == 'prod' || env == 'production';
|
||||
return env == 'prod' ||
|
||||
env == 'production' ||
|
||||
env == 'stage' ||
|
||||
env == 'staging';
|
||||
}
|
||||
|
||||
static bool parseBoolFlag(String? raw) {
|
||||
|
||||
Reference in New Issue
Block a user