com.ybo.trackingplugin.tasks.TraceProcessingParams.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of traceplugin Show documentation
Show all versions of traceplugin Show documentation
gradle plugin allowing to add automatic logs (or other process) at the start of each traced method
package com.ybo.trackingplugin.tasks
object TraceProcessingParams {
const val PROCESSING_TASK_NAME = "processTrace"
const val REVERSE_PROCESSING_TASK_NAME = "unprocessTrace"
const val TASK_PROCESSING_GROUP = "traceProcessing"
const val TAG = "GENERATED WITH TASK $PROCESSING_TASK_NAME"
const val TRACING_FEATURE_CONFIG = "tracing"
const val TRACEPERFORMER_PACKAGE = "com.ybo.trackingplugin.tracerlib.TracePerformer"
const val TRACABLE_TASKS_PREFIX = "traced"
}