mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-02 19:35:49 +01:00
11 lines
225 B
Python
11 lines
225 B
Python
|
|
import subprocess
|
||
|
|
|
||
|
|
class InstallLog:
|
||
|
|
fileName = "installLogs.txt"
|
||
|
|
|
||
|
|
@staticmethod
|
||
|
|
def writeToFile(message):
|
||
|
|
file = open(InstallLog.fileName,'a')
|
||
|
|
file.writelines(message + "\n")
|
||
|
|
file.close()
|