mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
vlib: remove modules/functions/fields, deprecated in 2023 (#22750)
This commit is contained in:
parent
2390e58da0
commit
5bba92a65a
16 changed files with 29 additions and 668 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue