summaryrefslogtreecommitdiffstats
path: root/loader/log.c
diff options
context:
space:
mode:
authorlaroche <laroche>2000-08-04 09:41:52 +0000
committerlaroche <laroche>2000-08-04 09:41:52 +0000
commit9755fe7f4f14f9c0d5b3f5cf488c1c180f4679a7 (patch)
treec8e46852bb8000237193a1ae59af66e9d582a473 /loader/log.c
parentc805fbd0b0e9fd235d74454957c46086d3d268e7 (diff)
downloadanaconda-9755fe7f4f14f9c0d5b3f5cf488c1c180f4679a7.tar.gz
anaconda-9755fe7f4f14f9c0d5b3f5cf488c1c180f4679a7.tar.xz
anaconda-9755fe7f4f14f9c0d5b3f5cf488c1c180f4679a7.zip
subvendorids,subdeviceids for trimpcitable
Diffstat (limited to 'loader/log.c')
-rw-r--r--loader/log.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/loader/log.c b/loader/log.c
index 2ab4c392f..26cd46b91 100644
--- a/loader/log.c
+++ b/loader/log.c
@@ -8,7 +8,9 @@
static FILE * logfile = NULL;
static int logfd;
+#if 0
static int logDebugMessages = 0;
+#endif
static void doLogMessage(const char * s, va_list args);
@@ -42,8 +44,9 @@ void openLog(int useLocal) {
logfile = fopen("debug.log", "w");
logfd = open("debug.log", O_WRONLY);
}
-
+#if 0
if (getenv("DEBUG")) logDebugMessages = 1;
+#endif
}
void closeLog(void) {