Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
VibeNL committed Dec 3, 2024
1 parent 568716a commit 2e04bdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GhostfolioAPI/API/ApiWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ private async Task WriteOrder(Activity activity)
var url = $"api/v1/order";
await restCall.DoRestPost(url, await ConvertToBody(activity));

logger.LogDebug("Added transaction {Date} {Symbol} {Quantity} {Type}", activity.Date.ToInvariantString(), activity.SymbolProfile?.Symbol, activity.Quantity, activity.Type);
logger.LogInformation("Added transaction {Date} {Symbol} {Quantity} {Type}", activity.Date.ToInvariantString(), activity.SymbolProfile?.Symbol, activity.Quantity, activity.Type);
}

[System.Diagnostics.CodeAnalysis.SuppressMessage("Major Code Smell", "S2629:Logging templates should be constant", Justification = "<Pending>")]
Expand Down

0 comments on commit 2e04bdd

Please sign in to comment.