Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
71fb7b90
Commit
71fb7b90
authored
May 31, 2007
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Downgrade some low-level startup messages to DEBUG1.
parent
fa0e318f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
src/backend/access/transam/xlog.c
src/backend/access/transam/xlog.c
+6
-6
No files found.
src/backend/access/transam/xlog.c
View file @
71fb7b90
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.27
0 2007/05/30 20:11:55 tgl
Exp $
* $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.27
1 2007/05/31 07:36:12 petere
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -4702,7 +4702,7 @@ StartupXLOG(void)
record
=
ReadCheckpointRecord
(
checkPointLoc
,
0
);
if
(
record
!=
NULL
)
{
ereport
(
LOG
,
ereport
(
DEBUG1
,
(
errmsg
(
"checkpoint record is at %X/%X"
,
checkPointLoc
.
xlogid
,
checkPointLoc
.
xrecoff
)));
InRecovery
=
true
;
/* force recovery even if SHUTDOWNED */
...
...
@@ -4726,7 +4726,7 @@ StartupXLOG(void)
record
=
ReadCheckpointRecord
(
checkPointLoc
,
1
);
if
(
record
!=
NULL
)
{
ereport
(
LOG
,
ereport
(
DEBUG1
,
(
errmsg
(
"checkpoint record is at %X/%X"
,
checkPointLoc
.
xlogid
,
checkPointLoc
.
xrecoff
)));
}
...
...
@@ -4751,15 +4751,15 @@ StartupXLOG(void)
memcpy
(
&
checkPoint
,
XLogRecGetData
(
record
),
sizeof
(
CheckPoint
));
wasShutdown
=
(
record
->
xl_info
==
XLOG_CHECKPOINT_SHUTDOWN
);
ereport
(
LOG
,
ereport
(
DEBUG1
,
(
errmsg
(
"redo record is at %X/%X; shutdown %s"
,
checkPoint
.
redo
.
xlogid
,
checkPoint
.
redo
.
xrecoff
,
wasShutdown
?
"TRUE"
:
"FALSE"
)));
ereport
(
LOG
,
ereport
(
DEBUG1
,
(
errmsg
(
"next transaction ID: %u/%u; next OID: %u"
,
checkPoint
.
nextXidEpoch
,
checkPoint
.
nextXid
,
checkPoint
.
nextOid
)));
ereport
(
LOG
,
ereport
(
DEBUG1
,
(
errmsg
(
"next MultiXactId: %u; next MultiXactOffset: %u"
,
checkPoint
.
nextMulti
,
checkPoint
.
nextMultiOffset
)));
if
(
!
TransactionIdIsNormal
(
checkPoint
.
nextXid
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment