rua
This commit is contained in:
parent
76d591f2d9
commit
eff0775054
@ -3,6 +3,10 @@
|
|||||||
@contact 3695888@qq.com
|
@contact 3695888@qq.com
|
||||||
"""
|
"""
|
||||||
import os
|
import os
|
||||||
|
# os.chdir('../../')
|
||||||
|
import sys
|
||||||
|
sys.path.append(os.path.abspath('./Difficult_Rocket'))
|
||||||
|
print(sys.path)
|
||||||
# if __name__ == "__main__":
|
# if __name__ == "__main__":
|
||||||
# os.chdir('../')
|
# os.chdir('../')
|
||||||
|
|
||||||
@ -25,8 +29,7 @@ from Difficult_Rocket.utils.thread import ThreadLock
|
|||||||
# 将会创建一个空 logger
|
# 将会创建一个空 logger
|
||||||
# 可以自行通过
|
# 可以自行通过
|
||||||
# 配置方式二
|
# 配置方式二
|
||||||
#
|
|
||||||
#
|
|
||||||
|
|
||||||
color_reset_suffix = "\033[0m"
|
color_reset_suffix = "\033[0m"
|
||||||
""" 只是用来重置颜色的后缀 """
|
""" 只是用来重置颜色的后缀 """
|
||||||
@ -357,9 +360,8 @@ def get_logger(name: str = 'name') -> Logger:
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
import os
|
# import os
|
||||||
|
|
||||||
os.chdir('../../')
|
|
||||||
# 在这里可以使用 add_kwargs_to_global
|
# 在这里可以使用 add_kwargs_to_global
|
||||||
logger = Logger(name="Main")
|
logger = Logger(name="Main")
|
||||||
logger1 = Logger(name="RenderThread")
|
logger1 = Logger(name="RenderThread")
|
||||||
@ -368,7 +370,6 @@ if __name__ == "__main__":
|
|||||||
logger.info("Hello World!!")
|
logger.info("Hello World!!")
|
||||||
logger1.error("OpenGL Error 10086")
|
logger1.error("OpenGL Error 10086")
|
||||||
logger2.warning("Cannot write file.")
|
logger2.warning("Cannot write file.")
|
||||||
exit(0)
|
|
||||||
|
|
||||||
some_logger = Logger(name='aaa')
|
some_logger = Logger(name='aaa')
|
||||||
some_logger.level = ALL
|
some_logger.level = ALL
|
||||||
@ -380,3 +381,4 @@ if __name__ == "__main__":
|
|||||||
a_cache.append('123123')
|
a_cache.append('123123')
|
||||||
print(a_cache[0])
|
print(a_cache[0])
|
||||||
print(a_cache)
|
print(a_cache)
|
||||||
|
|
@ -29,7 +29,8 @@ from Difficult_Rocket.exception.language import *
|
|||||||
|
|
||||||
class Tr:
|
class Tr:
|
||||||
"""
|
"""
|
||||||
我不装了,我就复刻tr
|
我不装了,我就抄了tr
|
||||||
|
GOOD
|
||||||
"""
|
"""
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.config_regs = {}
|
self.config_regs = {}
|
||||||
|
Loading…
Reference in New Issue
Block a user