remove the annoying message

This commit is contained in:
rustdesk 2023-07-25 13:38:42 +08:00
parent b89bf86f03
commit 28ef64cba1

View File

@ -1333,7 +1333,6 @@ pub fn get_license_from_exe_name() -> ResultType<License> {
// if defined portable appname entry, replace original executable name with it.
if let Ok(portable_exe) = std::env::var(PORTABLE_APPNAME_RUNTIME_ENV_KEY) {
exe = portable_exe;
log::debug!("update portable executable name to {}", exe);
}
get_license_from_string(&exe)
}