File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -90,31 +90,31 @@ impl ConfigBuilder {
90
90
ConfigBuilder ( Config :: default ( ) )
91
91
}
92
92
93
- /// Set at which level and below the level itself shall be logged (default is Error)
93
+ /// Set at which level and above (more verbose) the level itself shall be logged (default is Error)
94
94
pub fn set_max_level < ' a > ( & ' a mut self , level : LevelFilter ) -> & ' a mut ConfigBuilder {
95
95
self . 0 . level = level;
96
96
self
97
97
}
98
98
99
- /// Set at which level and below the current time shall be logged (default is Error)
99
+ /// Set at which level and above (more verbose) the current time shall be logged (default is Error)
100
100
pub fn set_time_level < ' a > ( & ' a mut self , time : LevelFilter ) -> & ' a mut ConfigBuilder {
101
101
self . 0 . time = time;
102
102
self
103
103
}
104
104
105
- /// Set at which level and below the thread id shall be logged. (default is Debug)
105
+ /// Set at which level and above (more verbose) the thread id shall be logged. (default is Debug)
106
106
pub fn set_thread_level < ' a > ( & ' a mut self , thread : LevelFilter ) -> & ' a mut ConfigBuilder {
107
107
self . 0 . thread = thread;
108
108
self
109
109
}
110
110
111
- /// Set at which level and below the target shall be logged. (default is Debug)
111
+ /// Set at which level and above (more verbose) the target shall be logged. (default is Debug)
112
112
pub fn set_target_level < ' a > ( & ' a mut self , target : LevelFilter ) -> & ' a mut ConfigBuilder {
113
113
self . 0 . target = target;
114
114
self
115
115
}
116
116
117
- /// Set at which level and below a source code reference shall be logged (default is Trace)
117
+ /// Set at which level and above (more verbose) a source code reference shall be logged (default is Trace)
118
118
pub fn set_location_level < ' a > ( & ' a mut self , location : LevelFilter ) -> & ' a mut ConfigBuilder {
119
119
self . 0 . location = location;
120
120
self
You can’t perform that action at this time.
0 commit comments