Skip to content
Snippets Groups Projects
Verified Commit 09a15afe authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Remove unnecessary debug loudness

parent 580b5ba0
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,6 @@ impl Cache {
}
};
debug!("Lookup for user {} returned UID {}, GID {}", username, pw.pw_uid, pw.pw_gid);
debug!("name {} passwd {} gecos {} dir {} shell {}", pw.pw_name, pw.pw_passwd, pw.pw_gecos, pw.pw_dir, pw.pw_shell);
let target_euid = pw.pw_uid;
if target_euid == current_euid {
......@@ -122,7 +121,6 @@ impl Cache {
}
};
debug!("Lookup for user {} returned UID {}, GID {}", username, pw.pw_uid, pw.pw_gid);
debug!("name {} passwd {} gecos {} dir {} shell {}", pw.pw_name, pw.pw_passwd, pw.pw_gecos, pw.pw_dir, pw.pw_shell);
let user_home = pw.pw_dir;
env::set_var("HOME", &user_home);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment