Commit c1f770ed authored by Mitchell Hentges's avatar Mitchell Hentges
Browse files

Bug 1727561: Tweak an exception's log level r=glandium

parent 8732a586
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -272,9 +272,10 @@ def bootstrap_toolchain_tasks(host):
    }.get((host.cpu, host.os, host.kernel))
    try:
        return namespace(prefix=prefix, tasks=toolchain_task_definitions())
    except Exception:
    except Exception as e:
        message = traceback.format_exc()
        log.warning(message)
        log.warning(str(e))
        log.debug(message)
        return None