Skip to content

Commit

Permalink
fix: service output
Browse files Browse the repository at this point in the history
  • Loading branch information
fukusuket committed Feb 19, 2024
1 parent f6b0ed6 commit 2c09e7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/takajopkg/stackServices.nim
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ proc stackServices(level: string = "informational", ignoreSystem: bool = false,
let svc = jsonLine["Details"]["Svc"].getStr("N/A")
let path = jsonLine["Details"]["Path"].getStr("N/A")
let stackKey = svc & " -> " & path
stackResult(stackKey, stack, level, jsonLine, @["ServiceName", "Path"])
stackResult(stackKey, stack, level, jsonLine, @[svc, path])
bar.finish()
outputResult(output, "Service", stack, @["ServiceName", "Path"])
outputElasptedTime(startTime)

0 comments on commit 2c09e7b

Please sign in to comment.