Airship config environment

interface ConfigEnvironment {
    appKey: string;
    appSecret: string;
    ios?: {
        logPrivacyLevel?: "private" | "public";
    };
    logLevel?: LogLevel;
}

Properties

appKey: string

App key.

appSecret: string

App secret.

ios?: {
    logPrivacyLevel?: "private" | "public";
}

Optional iOS config

Type declaration

  • Optional logPrivacyLevel?: "private" | "public"

    Log privacy level. By default it logs at private, not logging anything lower than info to the console and redacting logs with string interpolation. public will log all configured log levels to the console without redacting any of the log lines.

logLevel?: LogLevel

Optional log level.