Skip to content

Commit 6136c99

Browse files
committed
Add the changed log level to the CHANGELOG; fix imports
1 parent 394c138 commit 6136c99

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
### Fixed
11+
- Lower the log level of logs in tight places from `debug!` to `trace!`

src/reactor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use std::sync::MutexGuard;
88

99
use enumset::{EnumSet, EnumSetType};
1010

11-
use log::{debug, info};
11+
use log::{debug, info, trace};
1212

1313
use libc as sys;
1414

0 commit comments

Comments
 (0)