summaryrefslogtreecommitdiffstats
path: root/CHANGES
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-08-17 23:27:03 +0000
committerRichard Levitte <levitte@openssl.org>2000-08-17 23:27:03 +0000
commit6fd5a0472913a81406f4eaf8ad3dc90e8a03fe96 (patch)
tree3a124da11b5a1be97a3b4530b79dc091332a16fa /CHANGES
parent0f4e21360d77241177f22bd810c65086dc790ef6 (diff)
Document the added diversity to the possible log levels.
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES24
1 files changed, 24 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index c2542cc1e0..078c2b6a0d 100644
--- a/CHANGES
+++ b/CHANGES
@@ -4,6 +4,30 @@
Changes between 0.9.5a and 0.9.6 [xx XXX 2000]
+ *) Added more prefixes to parse for in the the strings written
+ through a logging bio, to cover all the levels that are available
+ through syslog. The prefixes are now:
+
+ PANIC, EMERG, EMR => LOG_EMERG
+ ALERT, ALR => LOG_ALERT
+ CRIT, CRI => LOG_CRIT
+ ERROR, ERR => LOG_ERR
+ WARNING, WARN, WAR => LOG_WARNING
+ NOTICE, NOTE, NOT => LOG_NOTICE
+ INFO, INF => LOG_INFO
+ DEBUG, DBG => LOG_DEBUG
+
+ and as before, if none of those prefixes are present at the
+ beginning of the string, LOG_ERR is chosen.
+
+ On Win32, the LOG_* levels are mapped according to this:
+
+ LOG_EMERG, LOG_ALERT, LOG_CRIT, LOG_ERR => EVENTLOG_ERROR_TYPE
+ LOG_WARNING => EVENTLOG_WARNING_TYPE
+ LOG_NOTICE, LOG_INFO, LOG_DEBUG => EVENTLOG_INFORMATION_TYPE
+
+ [Richard Levitte]
+
*) Made it possible to reconfigure with just the configuration
argument "reconf" or "reconfigure". The command line arguments
are stored in Makefile.ssl in the variable CONFIGURE_ARGS,