Skip to content

Commit

Permalink
fix(cmd): fix incorrect logging format
Browse files Browse the repository at this point in the history
FTI-4801

Co-authored-by: Datong Sun <datong.sun@konghq.com>
  • Loading branch information
catbro666 and dndx authored Feb 21, 2023
1 parent 6ad8bf3 commit 9626ab5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kong/cmd/utils/prefix_handler.lua
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ local function gen_default_ssl_cert(kong_config, target)
end

if not exists(ssl_cert) and not exists(ssl_cert_key) then
log.verbose("generating %s SSL certificate (", ssl_cert, ") and key (", ssl_cert_key, ") for ", target or "proxy", " listener")
log.verbose("generating %s SSL certificate (%s) and key (%s) for listener",
target or "proxy", ssl_cert, ssl_cert_key)

local key
if suffix == "_ecdsa" then
Expand Down

1 comment on commit 9626ab5

@khcp-gha-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bazel Build

Docker image available kong/kong:9626ab5513ba16b3ba4961eb6ff82bb1f09012a8
Artifacts available https://github.com/Kong/kong/actions/runs/4230464747

Please sign in to comment.