@@ -126,47 +126,47 @@ static func get_string_in_between(string: String, initial: String, ending: Strin
126
126
# Stops the execution in editor
127
127
# Always logged
128
128
static func log_fatal (message : String , mod_name : String ) -> void :
129
- ModLoaderDeprecated .deprecated_changed ("ModLoader .log_fatal" , "ModLoaderLog.fatal" , "6.0.0" )
129
+ ModLoaderDeprecated .deprecated_changed ("ModLoaderUtils .log_fatal" , "ModLoaderLog.fatal" , "6.0.0" )
130
130
ModLoaderLog .fatal (message , mod_name )
131
131
132
132
133
133
# Logs the message and pushed an error. Prefixed ERROR
134
134
# Always logged
135
135
static func log_error (message : String , mod_name : String ) -> void :
136
- ModLoaderDeprecated .deprecated_changed ("ModLoader .log_error" , "ModLoaderLog.error" , "6.0.0" )
136
+ ModLoaderDeprecated .deprecated_changed ("ModLoaderUtils .log_error" , "ModLoaderLog.error" , "6.0.0" )
137
137
ModLoaderLog .error (message , mod_name )
138
138
139
139
140
140
# Logs the message and pushes a warning. Prefixed WARNING
141
141
# Logged with verbosity level at or above warning (-v)
142
142
static func log_warning (message : String , mod_name : String ) -> void :
143
- ModLoaderDeprecated .deprecated_changed ("ModLoader .log_warning" , "ModLoaderLog.warning" , "6.0.0" )
143
+ ModLoaderDeprecated .deprecated_changed ("ModLoaderUtils .log_warning" , "ModLoaderLog.warning" , "6.0.0" )
144
144
ModLoaderLog .warning (message , mod_name )
145
145
146
146
147
147
# Logs the message. Prefixed INFO
148
148
# Logged with verbosity level at or above info (-vv)
149
149
static func log_info (message : String , mod_name : String ) -> void :
150
- ModLoaderDeprecated .deprecated_changed ("ModLoader .log_info" , "ModLoaderLog.info" , "6.0.0" )
150
+ ModLoaderDeprecated .deprecated_changed ("ModLoaderUtils .log_info" , "ModLoaderLog.info" , "6.0.0" )
151
151
ModLoaderLog .info (message , mod_name )
152
152
153
153
154
154
# Logs the message. Prefixed SUCCESS
155
155
# Logged with verbosity level at or above info (-vv)
156
156
static func log_success (message : String , mod_name : String ) -> void :
157
- ModLoaderDeprecated .deprecated_changed ("ModLoader .log_success" , "ModLoaderLog.success" , "6.0.0" )
157
+ ModLoaderDeprecated .deprecated_changed ("ModLoaderUtils .log_success" , "ModLoaderLog.success" , "6.0.0" )
158
158
ModLoaderLog .success (message , mod_name )
159
159
160
160
161
161
# Logs the message. Prefixed DEBUG
162
162
# Logged with verbosity level at or above debug (-vvv)
163
163
static func log_debug (message : String , mod_name : String ) -> void :
164
- ModLoaderDeprecated .deprecated_changed ("ModLoader .log_debug" , "ModLoaderLog.debug" , "6.0.0" )
164
+ ModLoaderDeprecated .deprecated_changed ("ModLoaderUtils .log_debug" , "ModLoaderLog.debug" , "6.0.0" )
165
165
ModLoaderLog .debug (message , mod_name )
166
166
167
167
168
168
# Logs the message formatted with [method JSON.print]. Prefixed DEBUG
169
169
# Logged with verbosity level at or above debug (-vvv)
170
170
static func log_debug_json_print (message : String , json_printable , mod_name : String ) -> void :
171
- ModLoaderDeprecated .deprecated_changed ("ModLoader .log_debug_json_print" , "ModLoaderLog.debug_json_print" , "6.0.0" )
171
+ ModLoaderDeprecated .deprecated_changed ("ModLoaderUtils .log_debug_json_print" , "ModLoaderLog.debug_json_print" , "6.0.0" )
172
172
ModLoaderLog .debug_json_print (message , json_printable , mod_name )
0 commit comments