diff options
| author | Magnus Hagander <magnus@hagander.net> | 2011-06-09 18:21:38 +0200 | 
|---|---|---|
| committer | Magnus Hagander <magnus@hagander.net> | 2011-06-09 18:26:29 +0200 | 
| commit | cdd08887b9f160271f8d6695d5914c53814105c6 (patch) | |
| tree | 29d60e8eb16df15635af18cc6cb30353b9adda24 /src | |
| parent | 15fe829b23ad1871ed0b27d807371cbd37768289 (diff) | |
Use the correct eventlog severity for error
Diffstat (limited to 'src')
| -rw-r--r-- | src/bin/pg_ctl/pg_ctl.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/bin/pg_ctl/pg_ctl.c b/src/bin/pg_ctl/pg_ctl.c index 7714815b058..ffd014ea53e 100644 --- a/src/bin/pg_ctl/pg_ctl.c +++ b/src/bin/pg_ctl/pg_ctl.c @@ -1299,7 +1299,7 @@ pgwin32_ServiceMain(DWORD argc, LPTSTR *argv)  		write_eventlog(EVENTLOG_INFORMATION_TYPE, _("Waiting for server startup...\n"));  		if (test_postmaster_connection(true) == false)  		{ -			write_eventlog(EVENTLOG_INFORMATION_TYPE, _("Timed out waiting for server startup\n")); +			write_eventlog(EVENTLOG_ERROR_TYPE, _("Timed out waiting for server startup\n"));  			pgwin32_SetServiceStatus(SERVICE_STOPPED);  			return;  		} | 
