blob: 0a4348c78440cb7ba0cb7dd022c89e883db0d4e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
class LogFile:
def __init__ (self):
self.logFile = None
def close (self):
self.logFile.close ()
def open (self, serial, reconfigOnly, test):
if serial or reconfigOnly:
self.logFile = open("/tmp/install.log", "w")
elif reconfigOnly:
self.logFile = open("/tmp/reconfig.log", "w")
elif test:
self.logFile = open("/tmp/anaconda-debug.log", "w")
else:
self.logFile = open("/dev/tty3", "w")
def __call__ (self, format, *args):
if not self.logFile:
raise RuntimeError, "log file not open yet"
if args:
self.logFile.write ("* %s\n" % (format % args))
else:
self.logFile.write ("* %s\n" % format)
def getFile (self):
return self.logFile.fileno ()
log = LogFile()
|