diff --git a/usersguide.html b/usersguide.html
index 96b3205..53ffbe3 100644
--- a/usersguide.html
+++ b/usersguide.html
@@ -156,34 +156,38 @@ Yes, the logging methods will perform the same check, but only after resolving p
General - Message Priorities/Levels
It is important to ensure that log message are
appropriate in content and severity.
-The following guidelines are strongly suggested:
+The following guidelines are suggested:
- fatal - Severe errors that cause premature termination.
-Expect these to be immediately visible on a console,
-and MUST be internationalized.
+Expect these to be immediately visible on a status console.
+See also Internationalization.
+
- error - Other runtime errors or unexpected conditions.
-Expect these to be immediately visible on a console,
-and MUST be internationalized.
+Expect these to be immediately visible on a status console.
+See also Internationalization.
+
-- warn - Use of deprecated APIs, poor use of API, 'almost' errors, other
-runtime situations that are undesirable or unexpected, but not
+
- warn - Use of deprecated APIs, poor use of API, 'almost' errors,
+other runtime situations that are undesirable or unexpected, but not
necessarily "wrong".
-Expect these to be immediately visible on a console,
-and MUST be internationalized.
+Expect these to be immediately visible on a status console.
+See also Internationalization.
+
- info - Interesting runtime events (startup/shutdown).
Expect these to be immediately visible on a console,
so be conservative and keep to a minimum.
-These MUST be internationalized.
+See also Internationalization.
+
- debug - detailed information on flow of through the system.
Expect these to be written to logs only.
-These NEED NOT be internationalized, but it never hurts...
+
- trace - more detailed information.
Expect these to be written to logs only.
-These NEED NOT be internationalized, but it never hurts...
+
General - Default Message Priority/Level
@@ -280,19 +284,26 @@ by most logger implementations.
+
Enterprise - National Language Support - Internationalization
NLS internationalization involves looking up messages from
-a message file by a message key, and using that message logging.
+a message file by a message key, and using that message for logging.
There are various tools in Java, and provided by other components,
for working with NLS messages.
-NLS internationalization SHOULD be used for
-fatal, error, warn, and info messages.
-It can be considered optional for debug and trace messages.
+
+NLS enabled components are particularly appreciated
+(thats an open-source-correct term for 'required by corporate end-users' :-)
+for tooling and middleware components.
-Perhaps a more direct support for internationalizing log messages
+
NLS internationalization SHOULD be strongly considered for used for
+fatal, error, warn, and info messages.
+It is generally considered optional for debug and trace messages.
+
+
+Perhaps more direct support for internationalizing log messages
can be introduced in a future or alternate version of the Log interface.