Changeset

1080:b02290fd8a75

loggingmanager: Add a comment about 'nowhere' sink type
author Matthew Wild <mwild1@gmail.com>
date Thu, 30 Apr 2009 14:35:43 +0100
parents 1078:24c9ee99d900
children 1081:d41e88b07225
files core/loggingmanager.lua
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/core/loggingmanager.lua	Thu Apr 30 03:05:26 2009 +0100
+++ b/core/loggingmanager.lua	Thu Apr 30 14:35:43 2009 +0100
@@ -122,6 +122,7 @@
 
 --- Definition of built-in logging sinks ---
 
+-- Null sink, must enter log_sink_types *first*
 function log_sink_types.nowhere()
 	return function () return false; end;
 end