|
@@ -34,7 +34,7 @@ namespace ET
|
|
|
this.Parent = parent;
|
|
|
this.Domain = this;
|
|
|
this.IsRegister = true;
|
|
|
- Log.Info($"scene create: {this.SceneType} {this.Name} {this.Id} {this.InstanceId} {this.Zone}");
|
|
|
+ Log.Info($"scene create: sceneType={this.SceneType}, name={this.Name}, id={this.Id}, instanceId={this.InstanceId}, zone={this.Zone}");
|
|
|
}
|
|
|
|
|
|
public Scene(long id, long instanceId, int zone, SceneType sceneType, string name, Entity parent)
|
|
@@ -49,14 +49,14 @@ namespace ET
|
|
|
this.Parent = parent;
|
|
|
this.Domain = this;
|
|
|
this.IsRegister = true;
|
|
|
- Log.Info($"scene create: {this.SceneType} {this.Name} {this.Id} {this.InstanceId} {this.Zone}");
|
|
|
+ Log.Info($"scene create: sceneType={this.SceneType}, name={this.Name}, id={this.Id}, instanceId={this.InstanceId}, zone={this.Zone}");
|
|
|
}
|
|
|
|
|
|
public override void Dispose()
|
|
|
{
|
|
|
base.Dispose();
|
|
|
|
|
|
- Log.Info($"scene dispose: {this.SceneType} {this.Name} {this.Id} {this.InstanceId} {this.Zone}");
|
|
|
+ Log.Info($"scene dispose: sceneType={this.SceneType}, name={this.Name}, id={this.Id}, instanceId={this.InstanceId}, zone={this.Zone}");
|
|
|
}
|
|
|
|
|
|
public new Entity Domain
|