예제 #1
0
        public LogClient(string loggerName, string apikey = null, string apiurl = null)
        {
            StackifyAPILogger.Log("Creating new LogClient " + loggerName);

            _LoggerName = loggerName;
            _ApiKey = apikey;
            _ApiUrl = apiurl;

            _LogQueue = new LogQueue(this);
        }
예제 #2
0
        public LogClient(string loggerName, string apikey = null, string apiurl = null)
        {
            Config.LoadSettings();
            StackifyAPILogger.Log("Creating new LogClient " + loggerName);

            _LoggerName = loggerName;
            _ApiKey     = apikey;
            _ApiUrl     = apiurl;

            _LogQueue = new LogQueue(this);
        }