This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# based on Carnival http://ask.python.kr/users/6970/carnival/ | |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# Python-3.x, Eclipse | |
import os | |
import os.path | |
import csv | |
from multiprocessing import Process, Lock |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.ComponentModel; | |
using System.Reflection; | |
namespace LogManager | |
{ | |
/// <summary> | |
/// A Logging Enums implementing the Singleton pattern and an internal Queue to be flushed perdiodically | |
/// </summary> | |
public enum LogType |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections; | |
using System.ComponentModel; | |
using System.Configuration; | |
using System.IO; | |
using System.Runtime.InteropServices; | |
namespace LogManager | |
{ | |
/// <summary> |