using Plane.Logging; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Plane.ConsoleTests { class Program { static void Main(string[] args) { try { Foo(null); } catch (Exception) { //Logger.Instance.Log(ex); } } static void Foo(string kk) { throw new ArgumentNullException(nameof(kk)); } } }