diff --git a/wled00/bus_manager.cpp b/wled00/bus_manager.cpp index 8e43f684..b23a025b 100644 --- a/wled00/bus_manager.cpp +++ b/wled00/bus_manager.cpp @@ -1313,7 +1313,7 @@ int BusManager::add(BusConfig &bc) { // see https://stackoverflow.com/questions/3269434/whats-the-most-efficient-way-to-test-if-two-ranges-overlap if ((newStart <= theEnd) && (theStart <= newEnd)) { // catches all overlap scenarios - including "new is including (around) another range" foundOverlap = true; - USER_PRINTF("bus %u[%u %u] overlaps with\t%u [%u %u]", numBusses, newStart, newEnd, i, theStart, theEnd); + USER_PRINTF("bus %u[%u %u] overlaps with\t%u [%u %u]\n", numBusses, newStart, newEnd, i, theStart, theEnd); } } }