Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
zwangsheng committed Mar 28, 2023
1 parent 0db45a5 commit be8da79
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ class KubernetesApplicationOperation extends ApplicationOperation with Logging {
debug(s"Deleting application info from Kubernetes cluster by $tag tag")
try {
val info = appInfoStore.getOrDefault(tag, ApplicationInfo.notFound)
logger.info(appInfoStore.toString)
logger.info(info.toMap.toString())
info.state match {
case NOT_FOUND | FAILED | UNKNOWN =>
Expand Down Expand Up @@ -127,7 +128,7 @@ class KubernetesApplicationOperation extends ApplicationOperation with Logging {
case NOT_FOUND =>
ApplicationInfo(id = null, name = null, ApplicationState.NOT_FOUND)
case _ =>
debug(s"Successfully got application info by $tag: $info")
info(s"Successfully got application info by $tag: $info")
info
}
} catch {
Expand Down

0 comments on commit be8da79

Please sign in to comment.