Skip to content

Commit

Permalink
improve label in logs for number of database connections
Browse files Browse the repository at this point in the history
  • Loading branch information
tpokorra committed Jul 31, 2019
1 parent 3ab90bd commit f8dc09c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csharp/ICT/Common/DB/Database.cs
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ public void EstablishDBConnection(TDBType ADataBaseType,
}

SNumberConnections++;
TLogging.LogAtLevel(DBAccess.DB_DEBUGLEVEL_DETAILED_CONN_INFO, "number of connections " + SNumberConnections.ToString());
TLogging.LogAtLevel(DBAccess.DB_DEBUGLEVEL_DETAILED_CONN_INFO, "number of database connections " + SNumberConnections.ToString());

// We take out a 'lock' on the following code sequence because only *this* guarantees complete thread safety -
// though we have a call to 'WaitForCoordinatedDBAccess' above this could be either not working for some
Expand Down

0 comments on commit f8dc09c

Please sign in to comment.