2017-10-24 19:16:36 +05:00
|
|
|
import subprocess
|
|
|
|
|
import time
|
|
|
|
|
|
|
|
|
|
class CyberCPLogFileWriter:
|
2017-12-09 22:30:10 +05:00
|
|
|
fileName = "/home/cyberpanel/error-logs.txt"
|
2017-10-24 19:16:36 +05:00
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
def writeToFile(message):
|
|
|
|
|
try:
|
|
|
|
|
file = open(CyberCPLogFileWriter.fileName,'a')
|
|
|
|
|
file.writelines("[" + time.strftime(
|
|
|
|
|
"%I-%M-%S-%a-%b-%Y") + "] "+ message + "\n")
|
|
|
|
|
file.close()
|
|
|
|
|
except IOError,msg:
|
|
|
|
|
return "Can not write to error file."
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
def readLastNFiles(numberOfLines,fileName):
|
|
|
|
|
try:
|
|
|
|
|
|
|
|
|
|
lastFewLines = subprocess.check_output(["tail", "-n",str(numberOfLines),fileName])
|
|
|
|
|
|
|
|
|
|
return lastFewLines
|
|
|
|
|
|
|
|
|
|
except subprocess.CalledProcessError,msg:
|
|
|
|
|
return "File was empty"
|