commit | 17eebf9f6dcd5d06fb6d407e05442f51861ec2b0 | [log] [tgz] |
---|---|---|
author | Andrew Walbran <qwandor@google.com> | Wed Feb 05 16:35:49 2020 +0000 |
committer | Andrew Walbran <qwandor@google.com> | Mon Feb 10 15:04:35 2020 +0000 |
tree | b2046a748a9739ecca7ca9b829fab37907fcd1a3 | |
parent | 4f9cf9a2d5e72f6f325f93b62e377a0a95bb7b5e [diff] [blame] |
Support different log levels. This will let us add more verbose logs for debugging but have them compiled out most of the time. Change-Id: Iaae468e41025a165b5e67fa6fec5422f004c6a44
diff --git a/src/fdt.c b/src/fdt.c index b046662..85d1d0a 100644 --- a/src/fdt.c +++ b/src/fdt.c
@@ -386,7 +386,7 @@ /* Traverse the whole thing. */ if (!fdt_root_node(&node, hdr)) { - dlog("FDT failed validation.\n"); + dlog_error("FDT failed validation.\n"); return; }