vlib: remove modules/functions/fields, deprecated in 2023 (#22750)

This commit is contained in:
Delyan Angelov 2024-11-17 20:09:21 +02:00 committed by GitHub
parent 2390e58da0
commit 5bba92a65a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 29 additions and 668 deletions

View file

@ -52,13 +52,6 @@ pub fn (mut l Log) set_level(level Level) {
l.level = level
}
// set_output_level sets the internal logging output to `level`.
@[deprecated: 'use .set_level(level) instead']
@[deprecated_after: '2023-09-30']
pub fn (mut l Log) set_output_level(level Level) {
l.level = level
}
// set_full_logpath sets the output label and output path from `full_log_path`.
pub fn (mut l Log) set_full_logpath(full_log_path string) {
rlog_file := os.real_path(full_log_path)