Hi and sorry if this is the wrong subforum to post this question in, but I couldn't figure out where to ask questions about Sentinel. I'm wondering why Sentinel won't allow for tcp data transfer when log4net is selected as the provider. This is from the source code:
Please let me know if there is any way around this so that I can log data sent as TCP while still using log4net. Thanks!
Code:
if (provider == "log4net" && protocol == "tcp")
{
MessageBox.Show(
this,
"Log4net does not support TCP",
"Command Line Error",
MessageBoxButton.OK,
MessageBoxImage.Error);
}