output split across two lines

This commit is contained in:
Robin Müller 2021-04-02 15:12:36 +02:00
parent 106fd16ac2
commit 94fcbd587e
1 changed files with 2 additions and 2 deletions

View File

@ -87,8 +87,8 @@ ReturnValue_t LinuxLibgpioIF::configureRegularGpio(gpioId_t gpioId, GpiodRegular
lineNum = regularGpio->lineNum;
lineHandle = gpiod_chip_get_line(chip, lineNum);
if (!lineHandle) {
sif::error << "LinuxLibgpioIF::configureGpios: Failed to open line for GPIO "
"with ID " << gpioId << "with line number " << lineNum <<
sif::warning << "LinuxLibgpioIF::configureGpios: Failed to open line for GPIO" << std::endl;
sif::warning << "GPIO ID " << gpioId << "with line number " << lineNum <<
" and chipname " << chipname << std::endl;
gpiod_chip_close(chip);
return RETURN_FAILED;