1
0
mirror of https://github.com/rkujawa/rk65c02.git synced 2024-12-11 18:49:16 +00:00

Make log less verbose.

This commit is contained in:
Radosław Kujawa 2018-04-06 14:27:05 +02:00
parent adef30da21
commit eeb564d69f

View File

@ -35,7 +35,7 @@ bus_device_add(bus_t *b, device_t *d, uint16_t addr)
LL_APPEND((b->dm_head), dm); LL_APPEND((b->dm_head), dm);
rk65c02_log(LOG_INFO, "Bus mapping added: %x device %s size %x.", rk65c02_log(LOG_DEBUG, "Bus mapping added: %x device %s size %x.",
addr, d->name, d->size); addr, d->name, d->size);
} }