diff --git a/Sources/Aptabase/EnvironmentInfo.swift b/Sources/Aptabase/EnvironmentInfo.swift index c90fbb7..70dec0d 100644 --- a/Sources/Aptabase/EnvironmentInfo.swift +++ b/Sources/Aptabase/EnvironmentInfo.swift @@ -35,10 +35,10 @@ struct EnvironmentInfo { } private static var isDebug: Bool { - #if DEBUG - true - #else + #if RELEASE false + #else + true #endif }