mirror of
https://github.com/postgres/postgres.git
synced 2025-11-09 06:21:09 +03:00
Make debug_ GUC varables output DEBUG1 rather than LOG, and mention in
docs that CLIENT/LOG_MIN_MESSAGES now controls debug_* output location. Doc changes included.
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/commands/analyze.c,v 1.53 2003/04/25 21:29:18 tgl Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/commands/analyze.c,v 1.54 2003/05/27 17:49:45 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -161,7 +161,7 @@ analyze_rel(Oid relid, VacuumStmt *vacstmt)
|
||||
if (vacstmt->verbose)
|
||||
elevel = INFO;
|
||||
else
|
||||
elevel = DEBUG1;
|
||||
elevel = DEBUG2;
|
||||
|
||||
/*
|
||||
* Use the current context for storing analysis info. vacuum.c
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.94 2003/05/14 03:26:01 tgl Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.95 2003/05/27 17:49:45 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -150,7 +150,7 @@ void
|
||||
Async_Notify(char *relname)
|
||||
{
|
||||
if (Trace_notify)
|
||||
elog(LOG, "Async_Notify: %s", relname);
|
||||
elog(DEBUG1, "Async_Notify: %s", relname);
|
||||
|
||||
/* no point in making duplicate entries in the list ... */
|
||||
if (!AsyncExistsPendingNotify(relname))
|
||||
@@ -198,7 +198,7 @@ Async_Listen(char *relname, int pid)
|
||||
bool alreadyListener = false;
|
||||
|
||||
if (Trace_notify)
|
||||
elog(LOG, "Async_Listen: %s", relname);
|
||||
elog(DEBUG1, "Async_Listen: %s", relname);
|
||||
|
||||
lRel = heap_openr(ListenerRelationName, AccessExclusiveLock);
|
||||
|
||||
@@ -293,7 +293,7 @@ Async_Unlisten(char *relname, int pid)
|
||||
}
|
||||
|
||||
if (Trace_notify)
|
||||
elog(LOG, "Async_Unlisten %s", relname);
|
||||
elog(DEBUG1, "Async_Unlisten %s", relname);
|
||||
|
||||
lRel = heap_openr(ListenerRelationName, AccessExclusiveLock);
|
||||
|
||||
@@ -351,7 +351,7 @@ Async_UnlistenAll(void)
|
||||
ScanKeyData key[1];
|
||||
|
||||
if (Trace_notify)
|
||||
elog(LOG, "Async_UnlistenAll");
|
||||
elog(DEBUG1, "Async_UnlistenAll");
|
||||
|
||||
lRel = heap_openr(ListenerRelationName, AccessExclusiveLock);
|
||||
tdesc = RelationGetDescr(lRel);
|
||||
@@ -453,7 +453,7 @@ AtCommit_Notify(void)
|
||||
}
|
||||
|
||||
if (Trace_notify)
|
||||
elog(LOG, "AtCommit_Notify");
|
||||
elog(DEBUG1, "AtCommit_Notify");
|
||||
|
||||
/* preset data to update notify column to MyProcPid */
|
||||
nulls[0] = nulls[1] = nulls[2] = ' ';
|
||||
@@ -485,14 +485,14 @@ AtCommit_Notify(void)
|
||||
*/
|
||||
|
||||
if (Trace_notify)
|
||||
elog(LOG, "AtCommit_Notify: notifying self");
|
||||
elog(DEBUG1, "AtCommit_Notify: notifying self");
|
||||
|
||||
NotifyMyFrontEnd(relname, listenerPID);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (Trace_notify)
|
||||
elog(LOG, "AtCommit_Notify: notifying pid %d",
|
||||
elog(DEBUG1, "AtCommit_Notify: notifying pid %d",
|
||||
listenerPID);
|
||||
|
||||
/*
|
||||
@@ -541,7 +541,7 @@ AtCommit_Notify(void)
|
||||
ClearPendingNotifies();
|
||||
|
||||
if (Trace_notify)
|
||||
elog(LOG, "AtCommit_Notify: done");
|
||||
elog(DEBUG1, "AtCommit_Notify: done");
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -628,12 +628,12 @@ Async_NotifyHandler(SIGNAL_ARGS)
|
||||
{
|
||||
/* Here, it is finally safe to do stuff. */
|
||||
if (Trace_notify)
|
||||
elog(LOG, "Async_NotifyHandler: perform async notify");
|
||||
elog(DEBUG1, "Async_NotifyHandler: perform async notify");
|
||||
|
||||
ProcessIncomingNotify();
|
||||
|
||||
if (Trace_notify)
|
||||
elog(LOG, "Async_NotifyHandler: done");
|
||||
elog(DEBUG1, "Async_NotifyHandler: done");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -707,12 +707,12 @@ EnableNotifyInterrupt(void)
|
||||
if (notifyInterruptOccurred)
|
||||
{
|
||||
if (Trace_notify)
|
||||
elog(LOG, "EnableNotifyInterrupt: perform async notify");
|
||||
elog(DEBUG1, "EnableNotifyInterrupt: perform async notify");
|
||||
|
||||
ProcessIncomingNotify();
|
||||
|
||||
if (Trace_notify)
|
||||
elog(LOG, "EnableNotifyInterrupt: done");
|
||||
elog(DEBUG1, "EnableNotifyInterrupt: done");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -763,7 +763,7 @@ ProcessIncomingNotify(void)
|
||||
nulls[Natts_pg_listener];
|
||||
|
||||
if (Trace_notify)
|
||||
elog(LOG, "ProcessIncomingNotify");
|
||||
elog(DEBUG1, "ProcessIncomingNotify");
|
||||
|
||||
set_ps_display("async_notify");
|
||||
|
||||
@@ -799,7 +799,7 @@ ProcessIncomingNotify(void)
|
||||
/* Notify the frontend */
|
||||
|
||||
if (Trace_notify)
|
||||
elog(LOG, "ProcessIncomingNotify: received %s from %d",
|
||||
elog(DEBUG1, "ProcessIncomingNotify: received %s from %d",
|
||||
relname, (int) sourcePID);
|
||||
|
||||
NotifyMyFrontEnd(relname, sourcePID);
|
||||
@@ -834,7 +834,7 @@ ProcessIncomingNotify(void)
|
||||
set_ps_display("idle");
|
||||
|
||||
if (Trace_notify)
|
||||
elog(LOG, "ProcessIncomingNotify: done");
|
||||
elog(DEBUG1, "ProcessIncomingNotify: done");
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/commands/vacuum.c,v 1.253 2003/05/14 03:26:01 tgl Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/commands/vacuum.c,v 1.254 2003/05/27 17:49:45 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -166,7 +166,7 @@ vacuum(VacuumStmt *vacstmt)
|
||||
if (vacstmt->verbose)
|
||||
elevel = INFO;
|
||||
else
|
||||
elevel = DEBUG1;
|
||||
elevel = DEBUG2;
|
||||
|
||||
/*
|
||||
* We cannot run VACUUM inside a user transaction block; if we were
|
||||
@@ -1673,7 +1673,7 @@ repair_frag(VRelStats *vacrelstats, Relation onerel,
|
||||
/* Quick exit if we have no vtlinks to search in */
|
||||
if (vacrelstats->vtlinks == NULL)
|
||||
{
|
||||
elog(DEBUG1, "Parent item in update-chain not found - can't continue repair_frag");
|
||||
elog(DEBUG2, "Parent item in update-chain not found - can't continue repair_frag");
|
||||
break; /* out of walk-along-page loop */
|
||||
}
|
||||
|
||||
@@ -1710,7 +1710,7 @@ repair_frag(VRelStats *vacrelstats, Relation onerel,
|
||||
* in scan_heap(), but it's not implemented at the
|
||||
* moment and so we just stop shrinking here.
|
||||
*/
|
||||
elog(DEBUG1, "Child itemid in update-chain marked as unused - can't continue repair_frag");
|
||||
elog(DEBUG2, "Child itemid in update-chain marked as unused - can't continue repair_frag");
|
||||
chain_move_failed = true;
|
||||
break; /* out of loop to move to chain end */
|
||||
}
|
||||
@@ -1795,7 +1795,7 @@ repair_frag(VRelStats *vacrelstats, Relation onerel,
|
||||
if (vtlp == NULL)
|
||||
{
|
||||
/* see discussion above */
|
||||
elog(DEBUG1, "Parent item in update-chain not found - can't continue repair_frag");
|
||||
elog(DEBUG2, "Parent item in update-chain not found - can't continue repair_frag");
|
||||
chain_move_failed = true;
|
||||
break; /* out of check-all-items loop */
|
||||
}
|
||||
@@ -1831,7 +1831,7 @@ repair_frag(VRelStats *vacrelstats, Relation onerel,
|
||||
HeapTupleHeaderGetXmin(tp.t_data))))
|
||||
{
|
||||
ReleaseBuffer(Pbuf);
|
||||
elog(DEBUG1, "Too old parent tuple found - can't continue repair_frag");
|
||||
elog(DEBUG2, "Too old parent tuple found - can't continue repair_frag");
|
||||
chain_move_failed = true;
|
||||
break; /* out of check-all-items loop */
|
||||
}
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/commands/vacuumlazy.c,v 1.27 2003/03/04 21:51:21 tgl Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/commands/vacuumlazy.c,v 1.28 2003/05/27 17:49:45 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -133,7 +133,7 @@ lazy_vacuum_rel(Relation onerel, VacuumStmt *vacstmt)
|
||||
if (vacstmt->verbose)
|
||||
elevel = INFO;
|
||||
else
|
||||
elevel = DEBUG1;
|
||||
elevel = DEBUG2;
|
||||
|
||||
vacuum_set_xid_limits(vacstmt, onerel->rd_rel->relisshared,
|
||||
&OldestXmin, &FreezeLimit);
|
||||
|
||||
Reference in New Issue
Block a user