Compare commits

..

1 Commits

Author SHA1 Message Date
ddbddb92b3 feat(log): refine logging
All checks were successful
Build Docker Image / Explore-Gitea-Actions (push) Successful in 1m46s
Build and Push Docker Image / Build And Push Docker Image (push) Successful in 1m55s
2025-02-08 19:16:55 +01:00

View File

@@ -4,7 +4,7 @@ mod public_ip;
use std::{env, thread::sleep, time::Duration}; use std::{env, thread::sleep, time::Duration};
use dotenv::dotenv; use dotenv::dotenv;
use log::{error, info}; use log::{error, info, debug};
use public_ip::get_public_ip_address; use public_ip::get_public_ip_address;
use reqwest::header::{AUTHORIZATION, CONTENT_TYPE}; use reqwest::header::{AUTHORIZATION, CONTENT_TYPE};
use serde_json::Value; use serde_json::Value;