blob: d65efc4ac96ebdba8927482e8d29da10ed870498 (
plain) (
blame)
1
2
3
4
5
6
|
import {http_post} from "$shared/lib/api/internal-fetch";
import {api_base} from "$shared/lib/configuration";
export function server_log(message: string): void {
http_post(api_base("_/api/log"), message);
}
|