Skip to content

Commit

Permalink
stage based fixed exc inundation
Browse files Browse the repository at this point in the history
  • Loading branch information
RobHanna-NOAA committed Aug 29, 2024
1 parent 926b64f commit a077d02
Show file tree
Hide file tree
Showing 4 changed files with 192 additions and 106 deletions.
6 changes: 3 additions & 3 deletions src/utils/fim_logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ def notice(self, msg):
# goes to console and log file
level = "NOTICE " # keeps spacing the same
# print(f"{cl.fore.TURQUOISE_2}{msg}{cl.style.RESET}")
print(f"{level}{msg}")
print(f"{level}: {msg}")

if self.LOG_FILE_PATH == "":
print(self.LOG_SYS_NOT_SETUP_MSG)
Expand All @@ -336,7 +336,7 @@ def success(self, msg):

# c_msg_type = f"{cl.fore.SPRING_GREEN_2B}<{level}>{cl.style.RESET}"
# print(f"{self.__get_clog_dt()} {c_msg_type} : {msg}")
print(f"{level}{msg}")
print(f"{level}: {msg}")

if self.LOG_FILE_PATH == "":
print(self.LOG_SYS_NOT_SETUP_MSG)
Expand All @@ -354,7 +354,7 @@ def warning(self, msg):

# c_msg_type = f"{cl.fore.LIGHT_YELLOW}<{level}>{cl.style.RESET}"
# print(f"{self.__get_clog_dt()} {c_msg_type} : {msg}")
print(f"{level}{msg}")
print(f"{level}: {msg}")

if self.LOG_FILE_PATH == "":
print(self.LOG_SYS_NOT_SETUP_MSG)
Expand Down
Loading

0 comments on commit a077d02

Please sign in to comment.