From 675530b06ae77998865b940ced0d018b778f1c35 Mon Sep 17 00:00:00 2001 From: Adam Simon Date: Mon, 13 May 2024 13:21:13 +0200 Subject: [PATCH] Minor correction --- src/ConfigCatClient/ConfigCatClientSnapshot.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ConfigCatClient/ConfigCatClientSnapshot.cs b/src/ConfigCatClient/ConfigCatClientSnapshot.cs index 908b2908..fd365393 100644 --- a/src/ConfigCatClient/ConfigCatClientSnapshot.cs +++ b/src/ConfigCatClient/ConfigCatClientSnapshot.cs @@ -173,7 +173,7 @@ public EvaluationDetails GetValueDetails(string key, T defaultValue, User? } catch (Exception ex) { - evaluationServices.Logger.SettingEvaluationError(nameof(GetKeyAndValue), defaultReturnValue, ex); + evaluationServices.Logger.SettingEvaluationError($"{nameof(ConfigCatClientSnapshot)}.{nameof(GetKeyAndValue)}", defaultReturnValue, ex); return null; } }