]> jfr.im git - z_archive/kelsier.git/blobdiff - Logger.cs
Adding auth
[z_archive/kelsier.git] / Logger.cs
index c56d841091a6550c5c334c33a0bd77b217e240f2..1478662206a5ebcecf81d3269922e33b8aeb6b27 100644 (file)
--- a/Logger.cs
+++ b/Logger.cs
@@ -16,6 +16,7 @@
 // 
 // You should have received a copy of the GNU Affero General Public License
 // along with this program.  If not, see <http://www.gnu.org/licenses/>.
+//
 
 using System;
 using System.Collections.Generic;
@@ -23,9 +24,9 @@
 using System.Text;
 using System.IO;
 
-namespace Kelsier {
-    class Logger {
-        public LogOutput[] debugs {get; private set; }
+namespace Kelsier.Common {
+    public class Logger {
+        public LogOutput[] debugs { get; private set; }
         public LogOutput[] infos { get; private set; }
         public LogOutput[] errors { get; private set; }
         public string from { get; private set; }
@@ -99,7 +100,7 @@ class Logger {
         }
     }
 
-    class LogOutput {
+    public class LogOutput {
         public TextWriter writer { get; private set; }
         public bool open;
         public LogOutput(TextWriter writer) {