We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce0ce18 commit eecd7b2Copy full SHA for eecd7b2
CHANGELOG.md
@@ -4,6 +4,7 @@
4
5
### Added
6
- `network::client::tcp::TcpStream` not supports async connection, provided with `connect_async` and `connect_timeout_async` methods
7
+- `impl Default for log::TarantoolLogger`
8
9
### Changed
10
- `error::Result` type alias now has another generic parameter E, which defaults
tarantool/src/log.rs
@@ -50,6 +50,13 @@ impl TarantoolLogger {
50
}
51
52
53
+impl Default for TarantoolLogger {
54
+ #[inline(always)]
55
+ fn default() -> Self {
56
+ Self::new()
57
+ }
58
+}
59
+
60
impl Log for TarantoolLogger {
61
#[inline(always)]
62
fn enabled(&self, metadata: &Metadata) -> bool {
0 commit comments