fix(air): demote some AquaVM logging statements (#505)

Users complain that `warn` level produces lot of unnecessary logs.

+ join behavior logging is demoted to `trace`;
+ xor logging is demoted to `trace`;
+ service error logging is demoted to `debug`.
This commit is contained in:
Ivan Boldyrev
2023-03-11 01:09:23 +07:00
committed by GitHub
parent cb9c426a35
commit 271b74d8f2
3 changed files with 3 additions and 3 deletions

View File

@ -125,7 +125,7 @@ impl LastErrorAffectable for CatchableError {
macro_rules! log_join {
($($args:tt)*) => {
log::info!(target: air_log_targets::JOIN_BEHAVIOUR, $($args)*)
log::trace!(target: air_log_targets::JOIN_BEHAVIOUR, $($args)*)
}
}