mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-10-27 08:16:45 +01:00
12 lines
297 B
Python
12 lines
297 B
Python
|
|
import time
|
||
|
|
|
||
|
|
class InstallLog:
|
||
|
|
fileName = "/var/log/installLogs.txt"
|
||
|
|
|
||
|
|
@staticmethod
|
||
|
|
def writeToFile(message):
|
||
|
|
file = open(InstallLog.fileName,'a')
|
||
|
|
file.writelines("[" + time.strftime(
|
||
|
|
"%I-%M-%S-%a-%b-%Y") + "] "+message + "\n")
|
||
|
|
file.close()
|