mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-04-03 13:01:28 +03:00
plugin_framework, change func log to plugin_log
Signed-off-by: fufesou <shuanglongchen@yeah.net>
This commit is contained in:
@@ -13,7 +13,7 @@ fn is_level(level: *const c_char, level_bytes: &[u8]) -> bool {
|
||||
}
|
||||
|
||||
#[no_mangle]
|
||||
pub(super) extern "C" fn log(level: *const c_char, msg: *const c_char) {
|
||||
pub(super) extern "C" fn plugin_log(level: *const c_char, msg: *const c_char) {
|
||||
if level.is_null() || msg.is_null() {
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user