11// -------------------------------------------------------------------------------------------------
22// <copyright file="DataIdentityDeSerializer.cs" company="Starion Group S.A.">
33//
4- // Copyright 2022-2025 Starion Group S.A.
4+ // Copyright 2022-2026 Starion Group S.A.
55//
66// Licensed under the Apache License, Version 2.0 (the "License");
77// you may not use this file except in compliance with the License.
@@ -89,7 +89,7 @@ internal static DataIdentity DeSerialize(JsonElement jsonElement, SerializationM
8989 }
9090 else
9191 {
92- logger . LogDebug ( $ "the alias Json property was not found in the DataIdentity: { dtoInstance . Id } ") ;
92+ logger . LogDebug ( "the alias Json property was not found in the DataIdentity: {Id}" , dtoInstance . Id ) ;
9393 }
9494
9595 if ( jsonElement . TryGetProperty ( "description"u8 , out JsonElement descriptionProperty ) )
@@ -102,7 +102,7 @@ internal static DataIdentity DeSerialize(JsonElement jsonElement, SerializationM
102102 }
103103 else
104104 {
105- logger . LogDebug ( $ "the name Json property was not found in the DataIdentity: { dtoInstance . Id } ") ;
105+ logger . LogDebug ( "the name Json property was not found in the DataIdentity: {Id}" , dtoInstance . Id ) ;
106106 }
107107
108108 if ( jsonElement . TryGetProperty ( "resourceIdentifier"u8 , out JsonElement resourceIdentifierProperty ) )
@@ -111,7 +111,7 @@ internal static DataIdentity DeSerialize(JsonElement jsonElement, SerializationM
111111 }
112112 else
113113 {
114- logger . LogDebug ( $ "the resourceIdentifier Json property was not found in the DataIdentity: { dtoInstance . Id } ") ;
114+ logger . LogDebug ( "the resourceIdentifier Json property was not found in the DataIdentity: {Id}" , dtoInstance . Id ) ;
115115 }
116116
117117 logger . Log ( LogLevel . Trace , "finish deserialization: DataIdentity" ) ;
0 commit comments