Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit a3c969d

Browse files
committed
Fix debug elog message to agree with name of its routine.
1 parent 5ee2ae2 commit a3c969d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/executor/instrument.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Copyright (c) 2001-2003, PostgreSQL Global Development Group
88
*
99
* IDENTIFICATION
10-
* $PostgreSQL: pgsql/src/backend/executor/instrument.c,v 1.6 2003/11/29 19:51:48 pgsql Exp $
10+
* $PostgreSQL: pgsql/src/backend/executor/instrument.c,v 1.7 2004/01/30 22:44:21 tgl Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -37,7 +37,7 @@ InstrStartNode(Instrumentation *instr)
3737
return;
3838

3939
if (instr->starttime.tv_sec != 0 || instr->starttime.tv_usec != 0)
40-
elog(DEBUG2, "InstrStartTimer called twice in a row");
40+
elog(DEBUG2, "InstrStartNode called twice in a row");
4141
else
4242
gettimeofday(&instr->starttime, NULL);
4343
}

0 commit comments

Comments
 (0)