log: add log.use_stdout(), use it to silence the transition note for the most commonly used V tools/examples (#23642)

This commit is contained in:
Delyan Angelov 2025-02-03 12:37:57 +02:00 committed by GitHub
parent 23c3af8b4d
commit 319eb83525
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 24 additions and 7 deletions

View file

@ -7,6 +7,7 @@ import net.http
const url = 'https://api.coindesk.com/v1/bpi/currentprice.json'
fn main() {
log.use_stdout()
mut old_rate := f64(0)
for i := u64(1); true; i++ {
data := http.get(url) or {