diff --git a/logger/src/main/kotlin/ru/touchin/logger/dto/LogData.kt b/logger/src/main/kotlin/ru/touchin/logger/dto/LogData.kt index f273c06..d5874a3 100644 --- a/logger/src/main/kotlin/ru/touchin/logger/dto/LogData.kt +++ b/logger/src/main/kotlin/ru/touchin/logger/dto/LogData.kt @@ -1,11 +1,13 @@ package ru.touchin.logger.dto +import com.fasterxml.jackson.annotation.JsonIgnore import ru.touchin.logger.context.LogExecutionContextData class LogData { val tags = mutableSetOf() + @JsonIgnore var error: Throwable? = null var duration: Long? = null