Skip to content

Commit 803ec56

Browse files
committed
Commenting even more debug output.
1 parent 879e407 commit 803ec56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/EFCore.MySql/Storage/Internal/MySqlJsonTypeMapping.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ protected override void ConfigureParameter(DbParameter parameter)
131131
/// </summary>
132132
public override MethodInfo GetDataReaderMethod()
133133
{
134-
Console.WriteLine($"[DEBUG] MySqlJsonTypeMapping.GetDataReaderMethod() called - ClrType: {ClrType.Name} - returning DbDataReader.GetString");
134+
// Console.WriteLine($"[DEBUG] MySqlJsonTypeMapping.GetDataReaderMethod() called - ClrType: {ClrType.Name} - returning DbDataReader.GetString");
135135
return _getString;
136136
}
137137

@@ -142,7 +142,7 @@ public override MethodInfo GetDataReaderMethod()
142142
/// </summary>
143143
public override Expression CustomizeDataReaderExpression(Expression expression)
144144
{
145-
Console.WriteLine($"[DEBUG] MySqlJsonTypeMapping.CustomizeDataReaderExpression() called - ClrType: {ClrType.Name} - no conversion");
145+
// Console.WriteLine($"[DEBUG] MySqlJsonTypeMapping.CustomizeDataReaderExpression() called - ClrType: {ClrType.Name} - no conversion");
146146
// For regular JSON columns, no conversion needed - just return the string
147147
return base.CustomizeDataReaderExpression(expression);
148148
}

0 commit comments

Comments
 (0)