egl: stop egl spamming nclassified messages

This commit is contained in:
Victor Brekenfeld 2021-12-29 15:52:18 +01:00
parent 359c060e0f
commit 3530ac7335
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ extern "system" fn egl_debug_log(
}
egl::DEBUG_MSG_WARN_KHR => slog::warn!(logger, "[EGL] {}: {}", command_utf8, message_utf8),
egl::DEBUG_MSG_INFO_KHR => slog::info!(logger, "[EGL] {}: {}", command_utf8, message_utf8),
_ => slog::debug!(logger, "[EGL] {}: {}", command_utf8, message_utf8),
_ => {}
};
});
}