mirror of
https://github.com/djdevin/recnet-plugin.git
synced 2026-09-08 14:41:30 -07:00
16 lines
215 B
C
16 lines
215 B
C
#include "common.h"
|
|
|
|
#include "logger.h"
|
|
|
|
|
|
void LogAPIRequest(
|
|
const char *method,
|
|
const char *url
|
|
)
|
|
{
|
|
Log(
|
|
"[API] %s %s",
|
|
method ? method : "UNKNOWN",
|
|
url ? url : "NULL"
|
|
);
|
|
} |