mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
os: join => join_path
This commit is contained in:
@ -79,7 +79,7 @@ pub fn (l mut Log) set_output_label(label string){
|
||||
pub fn (l mut Log) set_output_path(output_file_path string) {
|
||||
if l.ofile.is_opened() { l.ofile.close() }
|
||||
l.output_to_file = true
|
||||
l.output_file_name = os.join( os.realpath( output_file_path ) , l.output_label )
|
||||
l.output_file_name = os.join_path( os.realpath( output_file_path ) , l.output_label )
|
||||
ofile := os.open_append( l.output_file_name ) or {
|
||||
panic('error while opening log file ${l.output_file_name} for appending')
|
||||
}
|
||||
|
Reference in New Issue
Block a user