Commit d7d71571 authored by Magnus Hagander's avatar Magnus Hagander

Change hba load failure message to LOG instead of WARNING.

Per comment from Tom.
parent fb7df896
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/libpq/hba.c,v 1.181 2009/03/04 08:43:15 mha Exp $ * $PostgreSQL: pgsql/src/backend/libpq/hba.c,v 1.182 2009/03/04 18:43:38 mha Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -1308,7 +1308,7 @@ load_hba(void) ...@@ -1308,7 +1308,7 @@ load_hba(void)
file = AllocateFile(HbaFileName, "r"); file = AllocateFile(HbaFileName, "r");
if (file == NULL) if (file == NULL)
{ {
ereport(WARNING, ereport(LOG,
(errcode_for_file_access(), (errcode_for_file_access(),
errmsg("could not open configuration file \"%s\": %m", errmsg("could not open configuration file \"%s\": %m",
HbaFileName))); HbaFileName)));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment