Advertisement
Guest User

Untitled

a guest
Mar 21st, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 1.59 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <configuration>
  3.     <system.diagnostics>
  4.         <sources>
  5.             <!-- This section defines the logging configuration for My.Application.Log -->
  6.             <source name="DefaultSource" switchName="DefaultSwitch">
  7.                 <listeners>
  8.                     <add name="FileLog"/>
  9.                     <!-- Uncomment the below section to write to the Application Event Log -->
  10.                     <!--<add name="EventLog"/>-->
  11.                 </listeners>
  12.             </source>
  13.         </sources>
  14.         <switches>
  15.             <add name="DefaultSwitch" value="Information" />
  16.         </switches>
  17.         <sharedListeners>
  18.             <add name="FileLog"
  19.                  type="Microsoft.VisualBasic.Logging.FileLogTraceListener, Microsoft.VisualBasic, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  20.                  initializeData="FileLogWriter"/>
  21.             <!-- Uncomment the below section and replace APPLICATION_NAME with the name of your application to write to the Application Event Log -->
  22.             <!--<add name="EventLog" type="System.Diagnostics.EventLogTraceListener" initializeData="APPLICATION_NAME"/> -->
  23.         </sharedListeners>
  24.     </system.diagnostics>
  25.   <appSettings>
  26.     <add key="server" value="SE-PC"></add>
  27.     <add key="db" value="formatif"></add>
  28.     <add key="uid" value="sa"></add>
  29.     <add key="pwd" value="sa"></add>
  30.     <add key="reportpath" value="C:\Users\se\Documents\Visual Studio 2008\Projects\raawatjalan\raawatjalan\"></add>
  31.   </appSettings>
  32. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement