1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-09 06:21:09 +03:00

Move plpgsql DEBUG from DEBUG2 to DEBUG1 because it is a user-requested

DEBUG.

Fix a few places where DEBUG1 crept in that should have been DEBUG2.
This commit is contained in:
Bruce Momjian
2005-02-12 23:53:42 +00:00
parent e9d693411c
commit 7c44e57331
3 changed files with 8 additions and 8 deletions

View File

@@ -48,7 +48,7 @@
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/backend/access/transam/slru.c,v 1.23 2004/12/31 21:59:29 pgsql Exp $
* $PostgreSQL: pgsql/src/backend/access/transam/slru.c,v 1.24 2005/02/12 23:53:37 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -944,7 +944,7 @@ SlruScanDirectory(SlruCtl ctl, int cutoffPage, bool doDeletions)
if (doDeletions)
{
snprintf(path, MAXPGPATH, "%s/%s", ctl->Dir, clde->d_name);
ereport(DEBUG1,
ereport(DEBUG2,
(errmsg("removing file \"%s\"", path)));
unlink(path);
}