From d478725a045f32964705e597148f515848e684a9 Mon Sep 17 00:00:00 2001 From: Abin Simon Date: Wed, 3 May 2023 17:50:21 +0530 Subject: [PATCH] Small typo fix in a log message (#3290) --- #### Does this PR need a docs update or release note? - [ ] :white_check_mark: Yes, it's included - [ ] :clock1: Yes, but in a later PR - [x] :no_entry: No #### Type of change - [ ] :sunflower: Feature - [x] :bug: Bugfix - [ ] :world_map: Documentation - [ ] :robot: Supportability/Tests - [ ] :computer: CI/Deployment - [ ] :broom: Tech Debt/Cleanup #### Issue(s) * # #### Test Plan - [x] :muscle: Manual - [ ] :zap: Unit test - [ ] :green_heart: E2E --- src/internal/connector/onedrive/item.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal/connector/onedrive/item.go b/src/internal/connector/onedrive/item.go index bdc64b068..5b9be865c 100644 --- a/src/internal/connector/onedrive/item.go +++ b/src/internal/connector/onedrive/item.go @@ -256,7 +256,7 @@ func filterUserPermissions(ctx context.Context, perms []models.Permissionable) [ logm.With("application_id", ptr.Val(gv2.GetApplication().GetId())) } if gv2.GetDevice() != nil { - logm.With("application_id", ptr.Val(gv2.GetDevice().GetId())) + logm.With("device_id", ptr.Val(gv2.GetDevice().GetId())) } logm.Info("untracked permission") }