@@ -1439,7 +1439,7 @@ private sinter.sinter_AppError runSim_SteadyState(bool opt=false)
14391439 {
14401440
14411441 initializeMessageLogging ( ) ;
1442-
1442+ Log . Information ( "sinter.sinter_SimACM: runSim_SteadyState" ) ;
14431443
14441444 // this ACM module is for steady state, and steady state
14451445 // optimization runs
@@ -1597,7 +1597,7 @@ private sinter.sinter_AppError runSim_Dynamic()
15971597 // this ACM module is for steady state runs
15981598 o_acm . Simulation . RunMode = "Dynamic" ;
15991599 o_acm . Simulation . Termination = "AtTime" ;
1600-
1600+ Log . Information ( "sinter.sinter_SimACM: runSim_Dynamic" ) ;
16011601 //If the sim has already been canceled, don't run it.
16021602 lock ( ( this ) )
16031603 {
@@ -1762,6 +1762,7 @@ private sinter.sinter_AppError runSim_Dynamic()
17621762
17631763 public override sinter . sinter_AppError runSim ( )
17641764 {
1765+ Log . Information ( "sinter.sinter_SimACM: runSim" ) ;
17651766 if ( simulatorStatus != sinter_simulatorStatus . si_OPEN )
17661767 {
17671768 throw new ArgumentException ( "Simulator is not in Open status, cannon run!" ) ;
@@ -1916,6 +1917,7 @@ private void openDocument()
19161917
19171918 public override void openSim ( )
19181919 {
1920+ Log . Information ( "sinter.sinter_SimACM: openSim" ) ;
19191921 if ( simulatorStatus != sinter_simulatorStatus . si_CLOSED )
19201922 {
19211923 return ; //Nothing to do.
@@ -2004,6 +2006,7 @@ public override void openSim()
20042006
20052007 public override void closeSim ( )
20062008 {
2009+ Log . Information ( "sinter.sinter_SimACM: closeSim" ) ;
20072010 if ( simulatorStatus == sinter_simulatorStatus . si_OPEN )
20082011 {
20092012 try
@@ -2029,6 +2032,7 @@ public override void closeSim()
20292032
20302033 public override void stopSim ( )
20312034 {
2035+ Log . Information ( "sinter.sinter_SimACM: stopSim" ) ;
20322036 lock ( ( this ) )
20332037 {
20342038 if ( simulatorStatus == sinter_simulatorStatus . si_INITIALIZING )
@@ -2047,6 +2051,7 @@ public override void stopSim()
20472051 public override bool terminate ( )
20482052 {
20492053 Debug . WriteLine ( String . Format ( "Terminate ProcessId '{0}'" , processID ) , GetType ( ) . Name ) ;
2054+ Log . Information ( String . Format ( "sinter.sinter_SimACM: terminate ProcessId='{0}'" , processID ) ) ;
20502055 lock ( this )
20512056 {
20522057 if ( processID > 0 )
0 commit comments