diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2020-02-14 12:51:12 +0100 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2020-02-14 12:51:12 +0100 |
| commit | ca862ddccec387dc7cb032d6c48206ce0d3cf37f (patch) | |
| tree | a61fe607a305584c2c184dd78c05a990b8f4610b | |
| parent | 92e858e398bf69380dbacebc042dde2bfa8cfe9c (diff) | |
bug: Remove actor terminology in source code
| -rw-r--r-- | odcsim/odcsim-engine-omega/src/main/kotlin/com/atlarge/odcsim/engine/omega/logging/LoggerImpl.kt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/odcsim/odcsim-engine-omega/src/main/kotlin/com/atlarge/odcsim/engine/omega/logging/LoggerImpl.kt b/odcsim/odcsim-engine-omega/src/main/kotlin/com/atlarge/odcsim/engine/omega/logging/LoggerImpl.kt index 555aac22..5a52473b 100644 --- a/odcsim/odcsim-engine-omega/src/main/kotlin/com/atlarge/odcsim/engine/omega/logging/LoggerImpl.kt +++ b/odcsim/odcsim-engine-omega/src/main/kotlin/com/atlarge/odcsim/engine/omega/logging/LoggerImpl.kt @@ -33,7 +33,7 @@ import org.slf4j.spi.LocationAwareLogger /** * An actor-specific [Logger] implementation. * - * @param ctx The owning [ActorContext] of this logger. + * @param ctx The owning [ProcessContext] of this logger. */ internal abstract class LoggerImpl internal constructor(protected val ctx: ProcessContext) : Logger { /** @@ -54,8 +54,8 @@ internal abstract class LoggerImpl internal constructor(protected val ctx: Proce * Mapped Diagnostic Context (MDC) attribute names. */ companion object { - val MDC_PROCESS_TIME = "actor.time" - val MDC_PROCESS_REF = "actor.ref" + val MDC_PROCESS_TIME = "process.time" + val MDC_PROCESS_REF = "process.ref" /** * Create a [Logger] for the specified [ActorContext]. |
