示例#1
0
 /// <summary>return the path and the name (codeLinkLog + SolutionName + processID)of the logfile</summary>
 private string getLogFilePath()
 {
     System.Diagnostics.Process p = System.Diagnostics.Process.GetCurrentProcess();
     return
         (Path.Combine(
              Path.Combine(DynatraceConfig.getAppDataPath(), "log"),
              "log_" + p.Id.ToString() + ".log"));
 }