I using Serilog and have several log methods that log a type. Currently when it is converted to a string the result is the full name including the namespace. How do I change that to remove the Namespace (to shorten the log messages somewhat)?
Log.Information("Type is {type}", typeof(System.Int32));
//Renders as 'Type is System.Int32'. I would prefer 'Type is Int32'.