移除不必要的debug信息

This commit is contained in:
xuejiaming 2022-07-20 13:47:16 +08:00
parent 8729d346a2
commit 91a9eebd60
2 changed files with 0 additions and 5 deletions

View File

@ -16,10 +16,6 @@ namespace ShardingCore.EFCores
public class ShardingModelCacheKeyFactory : IModelCacheKeyFactory
{
public ShardingModelCacheKeyFactory()
{
Console.WriteLine("ShardingModelCacheKeyFactory");
}
public object Create(DbContext context)
{
return Create(context, false);

View File

@ -29,7 +29,6 @@ namespace ShardingCore.EFCores
{
_shardingDbContext = currentContext.Context as IShardingDbContext ??
throw new ShardingCoreException("db context operator is not IShardingDbContext");
Console.WriteLine("ShardingQueryCompiler"+shardingRuntimeContext.DbContextType);
_shardingCompilerExecutor = shardingRuntimeContext.GetShardingCompilerExecutor();
}