Skip to content

Commit

Permalink
fix: remove cloud prefix from MDC key (#14289)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdpgrailsdev committed Oct 9, 2024
1 parent 536c4b4 commit 34dd427
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ import java.nio.file.Path
/** The default log file name. */
const val DEFAULT_LOG_FILENAME = "logs.log"

/** The default MDC key that holds the job log path for cloud storage. */
const val DEFAULT_JOB_LOG_PATH_MDC_KEY = "cloud_job_log_path"
/** The default MDC key that holds the job log path for log storage. */
const val DEFAULT_JOB_LOG_PATH_MDC_KEY = "job_log_path"

/** The default MDC key that holds the workspace path for cloud storage. */
const val DEFAULT_WORKSPACE_MDC_KEY = "cloud_workspace_app_root"
/** The default MDC key that holds the workspace path for log storage. */
const val DEFAULT_WORKSPACE_MDC_KEY = "workspace_app_root"

/**
* Defines methods for setting various MDC key/values related to logging
Expand Down

0 comments on commit 34dd427

Please sign in to comment.