diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-09-09 03:13:22 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-09-09 03:13:22 +0000 |
commit | 9e713ddb99da9ef9bdc893460dca2b6a91f01ba0 (patch) | |
tree | ec0c6ad183a622576e0cc99935fc77b51ae164ef /src/backend/port/snprintf.c | |
parent | 51db6455eac8aa5b0078cefffed51a6257ccbe1d (diff) | |
download | postgresql-9e713ddb99da9ef9bdc893460dca2b6a91f01ba0.tar.gz postgresql-9e713ddb99da9ef9bdc893460dca2b6a91f01ba0.zip |
Get rid of elog(DEBUG) in snprintf emulation ... it's just
cluttering the log file...
Diffstat (limited to 'src/backend/port/snprintf.c')
-rw-r--r-- | src/backend/port/snprintf.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/backend/port/snprintf.c b/src/backend/port/snprintf.c index 95a79a504d8..46d1da0b988 100644 --- a/src/backend/port/snprintf.c +++ b/src/backend/port/snprintf.c @@ -74,7 +74,7 @@ typedef unsigned long ulong_long; * causing nast effects. **************************************************************/ -/*static char _id[] = "$Id: snprintf.c,v 1.26 1999/08/31 01:28:37 tgl Exp $";*/ +/*static char _id[] = "$Id: snprintf.c,v 1.27 1999/09/09 03:13:22 tgl Exp $";*/ static char *end; static int SnprfOverflow; @@ -104,9 +104,6 @@ vsnprintf(char *str, size_t count, const char *fmt, va_list args) dopr(str, fmt, args); if (count > 0) end[0] = '\0'; - if (SnprfOverflow) - elog(DEBUG, "vsnprintf overflow, len = %d, str = %s", - count, str); return strlen(str); } |