Skip to content

Commit ceea493

Browse files
fix: isDebug environment for multiple non RELEASE build configs
1 parent 6a60634 commit ceea493

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: 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)