Group: pgsql.hackers


Subject: AllocSetStats uses fprintf instead of elog
From: tgl@sss.pgh.pa.us (Tom Lane)
Date: 11/16/2007 11:30:13 AM
Zdenek Kotala <Zdenek.Kotala@Sun.COM> writes: > Function AllocSetStats uses fprintf instead of standard logging method. > Is there any reason for it? Yes: it's typically called in zero-free-memory situations, and we don't want to depend on elog() succeeding to be able to find out what happened. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 6: explain analyze is your friend