first commit

This commit is contained in:
2025-03-25 20:32:26 +00:00
commit da487f3870
70 changed files with 17146 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
from sys import stderr
from Config import *
class Log:
@staticmethod
def info(someString):
if INFO:
f = open(LOGFILE, "a")
f.write( "flower: %s \n" % someString )
f.close()
if DEBUG:
print(someString)
@staticmethod
def debug(someString):
if DEBUG:
f = open(LOGFILE, "a")
f.write( "flower: %s \n" % someString )
f.close()