[Admin ENtry - From Romain T.]
Commenting type today:
--- BEGIN ---
/// LogLevels
/// - llDebug : Output all and debug informations
/// - llInfo : Output all
/// - llNotice : Output connections informations
/// - llWarn : Output warnings (Unable to initiate a
Backup)
/// - llError : Output all errors (Backup errors)
/// - llCritical : Only output critical events (Internal
errors)
TLogLevel = (llDebug, llInfo, llNotice, llWarn, llError,
llCritical);
--- END ---
Is it possible to write it this way in the future ?
--- BEGIN ---
/// LogLevels
TLogLevel = (llDebug, /// Output all and debug
informations
llInfo, /// Output all
llNotice, /// Output connections informations
llWarn, /// Output warnings (Unable to
initiate a Backup)
llError, /// Output all errors (Backup errors)
llCritical /// Only output critical events
(Internal errors)
);
--- END ---
Anonymous