How to Query
#1226
Replies: 1 comment 2 replies
-
Hi! Thanks for getting in touch. The problem here is that your message uses string interpolation (is prefixed by E.g. the log line should be: log.Information("{size:N4} Profit: {profit:C}", size, profit); Let me know if this helps. Best regards, |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a log that results in the following message
"0.2011 Profit: $3.22"
the message is created via:
$"{size:N4} Profit: {profit:C}"
How can I query all the log entries where 'profit' >= 5, or size > 10, for example?
I've tried profit >= 0 with no luck
Beta Was this translation helpful? Give feedback.
All reactions