o configure the logging level for a Mo.net component, do the following:

1.       Navigate to the application directory: C:\Program Files (x86)\Software Alliance\Mo.net <version>\<component>. example: C:\Program Files (x86)\Software Alliance\Mo.net 7.5\Mo.net Model Development Studio.

2.       Within the application directory, find the NLog.config file and open in your preferred application. example:

3.       Amend the minLevel attribute to your preferred level of logging. This will display all logs up to your preferred minimum logging level. This can be found near the bottom of the document.


 <rules>    add your logging rules here 


   Write all events with minimal level of Trace (So Trace, Debug, Info, Warn, Error and Fatal)  to "f"      <logger name="*" minlevel="Trace" writeTo="f" />
 </rules>

4.       Once changed, save and close the file. From this point on, the application will only log up to your preferred level of logging.