Creating Error log in wpf application -
i creating wpf application , in have create error log file application.
how can create automatically error log file in specific folder in date wise in wpf?
in web create error page , create error file have no idea how can create in wpf.
take @ log4net, allows setup log output in file or output stream event log, debug output...
if want yourself:
system.io.streamwriter file = new system.io.streamwriter("yourlog.log", true);
Comments
Post a Comment