Esempio n. 1
0
        protected override void DebugImpl(String text, String userName, String title)
        {
            if (_channelDebug == null)
            {
                return;
            }

            if (_tryOrderingReport)
            {
                _reportActions?.Push(() => _slackWebhook?.SendSync(_channelDebug, userName, title, text, "good", null));
            }
            else
            {
                _slackWebhook?.SendAsync(_channelDebug, userName, title, text, "good", null);
            }
        }