|
@@ -78,13 +78,14 @@ namespace ET
|
|
|
{
|
|
|
category.Register();
|
|
|
}
|
|
|
- }
|
|
|
+ Log.Debug("register all config ok");
|
|
|
+ }
|
|
|
|
|
|
private void LoadOneInThread(Type configType, byte[] oneConfigBytes)
|
|
|
{
|
|
|
object category = SerializeHelper.Deserialize(configType, oneConfigBytes, 0, oneConfigBytes.Length);
|
|
|
-
|
|
|
- lock (this)
|
|
|
+ Log.Debug($"Deserialize: {configType} ok");
|
|
|
+ lock (this)
|
|
|
{
|
|
|
this.allConfig[configType] = category as ISingleton;
|
|
|
}
|