Skip to content

Commit aecdf1f

Browse files
authored
Merge pull request #24 from adrianmacarenco/fix-multiple-non-prod-build-configs
fix: isDebug environment for multiple non RELEASE build configs
2 parents 6a60634 + ceea493 commit aecdf1f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sources/Aptabase/EnvironmentInfo.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ struct EnvironmentInfo {
3535
}
3636

3737
private static var isDebug: Bool {
38-
#if DEBUG
39-
true
40-
#else
38+
#if RELEASE
4139
false
40+
#else
41+
true
4242
#endif
4343
}
4444

0 commit comments

Comments
 (0)