var fDesc=new Array(); fDesc[0] = "Log4net Remoting Server Service is a Windows Service implementing a thin host that listens to log messages sent with the RemotingAppender, and then redirects them according to it's own log4net configuration, by default to a RollingFileAppender.
Main features:
- Consolidate all your log4net logs from your applications and servers to a single log via the log4net .NET Remoting Appender
- Solve all issues with simultaneous writes to the log file, lost logs during roll-over
- Browse all logs from all systems in a single logfile."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }