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