Skip to content

Commit 879e407

Browse files
committed
Commenting more debug output.
1 parent daf712b commit 879e407

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,21 @@ private static readonly ConstructorInfo _memoryStreamConstructor
3636
public MySqlStructuralJsonTypeMapping(string storeType)
3737
: base(storeType, typeof(JsonTypePlaceholder), dbType: null)
3838
{
39-
Console.WriteLine($"[DEBUG] MySqlStructuralJsonTypeMapping created - StoreType: {storeType}, ClrType: JsonTypePlaceholder, DbType: null");
39+
// Console.WriteLine($"[DEBUG] MySqlStructuralJsonTypeMapping created - StoreType: {storeType}, ClrType: JsonTypePlaceholder, DbType: null");
4040
}
4141

4242
protected MySqlStructuralJsonTypeMapping(RelationalTypeMappingParameters parameters)
4343
: base(parameters)
4444
{
45-
Console.WriteLine($"[DEBUG] MySqlStructuralJsonTypeMapping cloned - StoreType: {parameters.StoreType}");
45+
// Console.WriteLine($"[DEBUG] MySqlStructuralJsonTypeMapping cloned - StoreType: {parameters.StoreType}");
4646
}
4747

4848
/// <summary>
4949
/// MySQL stores JSON as strings, so we read using GetString.
5050
/// </summary>
5151
public override MethodInfo GetDataReaderMethod()
5252
{
53-
Console.WriteLine("[DEBUG] MySqlStructuralJsonTypeMapping.GetDataReaderMethod() called - returning DbDataReader.GetString");
53+
// Console.WriteLine("[DEBUG] MySqlStructuralJsonTypeMapping.GetDataReaderMethod() called - returning DbDataReader.GetString");
5454
return _getStringMethod;
5555
}
5656

@@ -60,7 +60,7 @@ public override MethodInfo GetDataReaderMethod()
6060
/// </summary>
6161
public override Expression CustomizeDataReaderExpression(Expression expression)
6262
{
63-
Console.WriteLine("[DEBUG] MySqlStructuralJsonTypeMapping.CustomizeDataReaderExpression() called - converting string to MemoryStream");
63+
// Console.WriteLine("[DEBUG] MySqlStructuralJsonTypeMapping.CustomizeDataReaderExpression() called - converting string to MemoryStream");
6464
return Expression.New(
6565
_memoryStreamConstructor,
6666
Expression.Call(

0 commit comments

Comments
 (0)