mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-17 10:57:19 +01:00
7404418903
* Adds SShttp Adds a HTTP Subsystem with a integrated Retry-Queue for Status-Code 429 and 503 Changes the discord subsystems send message function to the new http subsystem The previous http_ request functions remain but have been renamed to old to signify that they should not be used for new implementations * Fixes lint error * DMDoc Pass * marks build_options as private * SHOULD_NOT_SLEEP where its relevant * update_channels is not a private proc, as it can be called by the API * Remove comments * Make fluffy happy * Makes fluffy even happier --------- Co-authored-by: Werner <Arrow768@users.noreply.github.com>
5 lines
188 B
Plaintext
5 lines
188 B
Plaintext
/// Logging for HTTP Requests
|
|
/proc/log_subsystem_http(text)
|
|
if(GLOB.config.logsettings["log_subsystems_http"])
|
|
WRITE_LOG(GLOB.config.logfiles["world_subsystems_http"], "HTTP: [text]")
|