Skip to content

Commit

Permalink
fix debugging output, no functional change.
Browse files Browse the repository at this point in the history
  • Loading branch information
mtalexander committed Aug 16, 2023
1 parent 4ad7a70 commit 3aa6e60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libgnucash/app-utils/gnc-quotes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ parse_quote_json(PriceParams& p, const bpt::ptree& comm_pt)


PINFO("Commodity: %s", p.mnemonic);
PINFO(" Success: %s", (inverted ? "yes" : "no"));
PINFO(" Success: %s", (p.success ? "yes" : "no"));
PINFO(" Date: %s", (p.date ? p.date->c_str() : "missing"));
PINFO(" Time: %s", (p.time ? p.time->c_str() : "missing"));
PINFO(" Currency: %s", (p.currency ? p.currency->c_str() : "missing"));
Expand Down

0 comments on commit 3aa6e60

Please sign in to comment.