mirror of
https://github.com/gnustep/libs-sqlclient.git
synced 2025-06-04 19:11:13 +00:00
Make lock reporting threshold go to zero if in debug or recording all queries.
This commit is contained in:
parent
16d56c5395
commit
3e35662803
2 changed files with 16 additions and 3 deletions
|
@ -7,6 +7,8 @@
|
|||
connection from a pool or to be able to execute a query on a
|
||||
connection used by another thread is recorded. When query duration
|
||||
logging is performed, report lock delays of over a millisecond.
|
||||
If debug is on or if the query logging duration is zero, then any
|
||||
lock delay (no matter how small) is reported.
|
||||
|
||||
2023-08-16 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
|
|
17
SQLClient.m
17
SQLClient.m
|
@ -3315,7 +3315,18 @@ static int poolConnections = 0;
|
|||
|
||||
if (ti > _duration)
|
||||
{
|
||||
BOOL additional = NO;
|
||||
BOOL additional = NO;
|
||||
NSTimeInterval threshold = 0.001;
|
||||
|
||||
/* The threshold for reporting lock information is set to zero if
|
||||
* we have debug turned on or if the logging threshold is set to
|
||||
* zero (to log every query). A level of zero means that any
|
||||
* locjk which was not obtained immediately is recorded.
|
||||
*/
|
||||
if (_duration <= 0.0 || _debugging > 0.0)
|
||||
{
|
||||
threshold = 0.0;
|
||||
}
|
||||
|
||||
m = [NSMutableString stringWithCapacity: 1000];
|
||||
[m appendFormat: @"Duration %g", ti];
|
||||
|
@ -3329,7 +3340,7 @@ static int poolConnections = 0;
|
|||
{
|
||||
ti = _lastStart - _waitPool;
|
||||
}
|
||||
if (ti >= 0.001)
|
||||
if (ti >= threshold)
|
||||
{
|
||||
[m appendFormat: @" (%g waiting for connection pool", ti];
|
||||
additional = YES;
|
||||
|
@ -3338,7 +3349,7 @@ static int poolConnections = 0;
|
|||
if (_waitLock > 0.0)
|
||||
{
|
||||
ti = _lastStart - _waitLock;
|
||||
if (ti >= 0.001)
|
||||
if (ti >= threshold)
|
||||
{
|
||||
if (additional)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue