Skip to content

Commit

Permalink
Fix golang formatting of multi-line logs
Browse files Browse the repository at this point in the history
  • Loading branch information
ok300 committed Apr 25, 2024
1 parent f0cd584 commit 0240330
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions snippets/go/communicating_fees.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func getFeeInfoBeforeInvoiceCreated() {
} else {
log.Printf(
"A setup fee of %#v%% with a minimum of %#v sats will be applied" +
"for receiving more than %#v sats.",
"for receiving more than %#v sats.",
feePercentage, minFeeSat, inboundLiquiditySat)
}
}
Expand Down Expand Up @@ -57,8 +57,8 @@ func getFeeInfoReceiveOnchain() {

log.Printf(
"Send more than %#v sats and up to %#v sats to this address. " +
"A setup fee of %#v%% with a minimum of %#v sats will be applied " +
"for sending more than %#v sats. This address can only be used once.",
"A setup fee of %#v%% with a minimum of %#v sats will be applied " +
"for sending more than %#v sats. This address can only be used once.",
minDepositSat, maxDepositSat, feePercentage, minFeeSat, inboundLiquiditySat)
}
}
Expand Down

0 comments on commit 0240330

Please sign in to comment.