aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/examples/log.v
blob: a4c28e1c5efbaa8e47af1d6af5199c7128cfbd38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import log

fn main() {
	mut l := log.Log{}
	l.set_level(.info)
	// Make a new file called info.log in the current folder
	l.set_full_logpath('./info.log')
	l.log_to_console_too()
	println('Please check the file: $l.output_file_name after this example crashes.')

	l.info('info')
	l.warn('warn')
	l.error('error')
	l.debug('no debug')
	l.set_level(.debug)
	l.debug('debug')
	l.fatal('fatal')
}