diff options
| author | Bruce Momjian | 2002-03-06 06:10:59 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2002-03-06 06:10:59 +0000 |
| commit | 92288a1cf9490be3835dc8524ee2ba407f1b885a (patch) | |
| tree | c4fe79ee2cb5cb8fa3385580c6cf431a97c2fc48 /contrib/pgcrypto/px.c | |
| parent | 22ebad9e39e268c9d4c6c2e422af727058830089 (diff) | |
Change made to elog:
o Change all current CVS messages of NOTICE to WARNING. We were going
to do this just before 7.3 beta but it has to be done now, as you will
see below.
o Change current INFO messages that should be controlled by
client_min_messages to NOTICE.
o Force remaining INFO messages, like from EXPLAIN, VACUUM VERBOSE, etc.
to always go to the client.
o Remove INFO from the client_min_messages options and add NOTICE.
Seems we do need three non-ERROR elog levels to handle the various
behaviors we need for these messages.
Regression passed.
Diffstat (limited to 'contrib/pgcrypto/px.c')
| -rw-r--r-- | contrib/pgcrypto/px.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/pgcrypto/px.c b/contrib/pgcrypto/px.c index 891888efb9..ed7e330edc 100644 --- a/contrib/pgcrypto/px.c +++ b/contrib/pgcrypto/px.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: px.c,v 1.6 2001/11/20 18:54:07 momjian Exp $ + * $Id: px.c,v 1.7 2002/03/06 06:09:10 momjian Exp $ */ #include <postgres.h> @@ -217,7 +217,7 @@ combo_decrypt(PX_Combo * cx, const uint8 *data, unsigned dlen, /* error reporting should be done in pgcrypto.c */ block_error: - elog(NOTICE, "Data not a multiple of block size"); + elog(WARNING, "Data not a multiple of block size"); return -1; } |
