All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amplitude.core.utilities.LoggerExtensions.kt Maven / Gradle / Ivy

The newest version!
package com.amplitude.core.utilities

import com.amplitude.common.Logger

internal fun Exception.logWithStackTrace(logger: Logger, message: String) {
    this.message?.let {
        logger.error("$message: $it")
    }
    this.stackTrace?.let {
        logger.error("Stack trace: ${this.stackTraceToString()}")
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy