How do I insert tabs in the log4net layout pattern?
Caveat: I haven’t actually used log4net. But if I understand correctly, the configuration is an XML file, isn’t it? And the pattern is just text with some special tokens. So have you tried embedding actual tab characters in your pattern? The XML sequence for a tab is 	, e.g.: <conversionPattern value=”%utcdate	[%thread]	%-5level	%logger	%message%newline” /> Or if you’re … Read more