mirror of
https://github.com/agersant/polaris
synced 2024-11-10 02:04:13 +00:00
parent
930fd67ae3
commit
f6d45c8387
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
use diesel::prelude::*;
|
||||
use log::{error, info};
|
||||
use log::{debug, error};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use std::thread;
|
||||
use std::time;
|
||||
|
@ -39,7 +39,7 @@ impl Manager {
|
|||
fn update_my_ip(&self) -> Result<(), Error> {
|
||||
let config = self.config()?;
|
||||
if config.host.is_empty() || config.username.is_empty() {
|
||||
info!("Skipping DDNS update because credentials are missing");
|
||||
debug!("Skipping DDNS update because credentials are missing");
|
||||
return Ok(());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue