Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorGert Driesen <drieseng@users.sourceforge.net>2006-08-20 15:56:20 +0400
committerGert Driesen <drieseng@users.sourceforge.net>2006-08-20 15:56:20 +0400
commitcdb8777b4361a98c20a202839dabb9729427bfc3 (patch)
tree0fcc00541ec2be066901e728b148470354da35a7 /man
parentbc28d0226bc08ced5a387ea4fd5cc6ac2a72763d (diff)
* mono.1 : Document MONO_EVENTLOG_TYPE, replaces MONO_EVENTLOG_PATH.
svn path=/trunk/mono/; revision=64089
Diffstat (limited to 'man')
-rw-r--r--man/ChangeLog4
-rw-r--r--man/mono.143
2 files changed, 41 insertions, 6 deletions
diff --git a/man/ChangeLog b/man/ChangeLog
index 1cf4a580dc7..1980a055b57 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,7 @@
+2006-08-20 Gert Driesen <drieseng@users.sourceforge.net>
+
+ * mono.1 : Document MONO_EVENTLOG_TYPE, replaces MONO_EVENTLOG_PATH.
+
2006-08-17 Sebastien Pouliot <sebastien@ximian.com>
* sn.1: Document the (new - 1.1.17) support for PKCS#12/PFX password
diff --git a/man/mono.1 b/man/mono.1
index 811a9790c9b..735c6657c41 100644
--- a/man/mono.1
+++ b/man/mono.1
@@ -582,12 +582,43 @@ unix). MONO_GAC_PREFIX should point to the top directory of a prefixed
install. Or to the directory provided in the gacutil /gacdir command. Example:
.B /home/username/.mono:/usr/local/mono/
.TP
-.I "MONO_EVENTLOG_PATH"
-It is required to enable local file based System.Diagnostics.EventLog
-implementation. This variable is used to indicate a local directory to
-store event logs (thus it must be writable by the user who runs
-the runtime). By default, a null implementation is used i.e. EventLog
-classes do nothing.
+.I "MONO_EVENTLOG_TYPE"
+Sets the type of event log provider to use (for System.Diagnostics.EventLog).
+.Sp
+Possible values are:
+.RS
+.ne 8
+.TP
+.I "local[:path]"
+.Sp
+Persists event logs and entries to the local file system.
+.Sp
+The directory in which to persit the event logs, event sources and entries
+can be specified as part of the value.
+.Sp
+If the path is not explicitly set, it defaults to "/var/lib/mono/eventlog"
+on unix and "%APPDATA%\mono\eventlog" on Windows.
+.TP
+.I "win32"
+.Sp
+.B *Windows Only*
+Uses the native win32 API to write events and registers event logs and
+event sources in the registry.
+.Sp
+On unix, the directory permission for individual event log and event source
+directories is set to 777 (with +t bit) allowing everyone to read and write
+event log entries while only allowing entries to be deleted by the user(s)
+that created them.
+.TP
+.I "null"
+.Sp
+Silently discards any events.
+.ne
+.ne
+.RE
+.TP
+The default is "null" on unix (and versions of Windows before NT), and
+"win32" on Windows NT (and higher).
.TP
.I "MONO_MANAGED_WATCHER"
If set to any value, System.IO.FileSystemWatcher will use the default