Skip to content

Commit 486e003

Browse files
committed
rm : mina ASCII art
1 parent 5e5b752 commit 486e003

File tree

2 files changed

+1
-21
lines changed

2 files changed

+1
-21
lines changed

app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313

1414

1515
if __name__ == "__main__":
16-
log.write_start_ascii_art()
16+
log.ASCII_SERVER_ON()
1717
log.write_log(f"Address=http://{env.get_host_addr()}:{env.get_port_num()}")
1818
app.run(host=env.get_host_addr(), port=int(env.get_port_num()), debug=True, use_reloader=False)

util/log/log.py

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -57,26 +57,6 @@ def write_log(self, text, level=logging.INFO):
5757
else:
5858
self.app.logger.info(text)
5959

60-
def write_start_ascii_art(self):
61-
"""
62-
MINA, server on 아스키 아트를 로그에 남깁니다.
63-
64-
"""
65-
self.ASCII_MINA()
66-
self.ASCII_SERVER_ON()
67-
68-
def ASCII_MINA(self):
69-
"""
70-
MINA 아스키 아트를 로그에 남깁니다.
71-
"""
72-
self.write_log(' ______ __ __ ______ ')
73-
self.write_log(" /'\_/`\ /\__ _\ /\ \/\ \ /\ _ \ ")
74-
self.write_log('/\ \ \/_/\ \/ \ \ `\\\\ \ \ \ \L\ \ ')
75-
self.write_log('\ \ \__\ \ \ \ \ \ \ , ` \ \ \ __ \ ')
76-
self.write_log(' \ \ \_/\ \ \_\ \__ \ \ \`\ \ \ \ \/\ \ ')
77-
self.write_log(' \ \_\\\\ \_\ /\_____\ \ \_\ \_\ \ \_\ \_\ ')
78-
self.write_log(' \/_/ \/_/ \/_____/ \/_/\/_/ \/_/\/_/ ')
79-
8060
def ASCII_SERVER_ON(self):
8161
"""
8262
Server ON 아스키 아트를 로그에 남깁니다.

0 commit comments

Comments
 (0)