rnd-20100315-2-src
[rocksndiamonds.git] / src / game_sp / ErrorReporting.c
1 // ----------------------------------------------------------------------------
2 // ErrorReporting.c
3 // ----------------------------------------------------------------------------
4
5 #include "ErrorReporting.h"
6
7
8
9 static char * GetErrLogPath();
10 static char * GetTraceLogPath();
11
12 // static char *VB_Name = "modErrorReporting";
13
14 // --- Option Explicit
15
16 static char *GetErrLogPath()
17 {
18   static char *GetErrLogPath;
19
20   // GetErrLogPath = GET_PATH(WithSlash(App.Path), "Error.log");
21   GetErrLogPath = "Error.log";
22
23   return GetErrLogPath;
24 }
25
26 static char *GetTraceLogPath()
27 {
28   static char *GetTraceLogPath;
29
30   // GetTraceLogPath = GET_PATH(WithSlash(App.Path), "Trace.log");
31   GetTraceLogPath = "Trace.log";
32
33   return GetTraceLogPath;
34 }