From 3f51ebaaf17be4c7dd1f3732f330a8315934788a Mon Sep 17 00:00:00 2001 From: Brendan Le Foll Date: Fri, 14 Aug 2015 11:18:24 +0100 Subject: [PATCH] i2c.c: add debug syslog message for i2c bus path Signed-off-by: Brendan Le Foll --- src/i2c/i2c.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i2c/i2c.c b/src/i2c/i2c.c index c754c42..c4e4146 100644 --- a/src/i2c/i2c.c +++ b/src/i2c/i2c.c @@ -123,6 +123,7 @@ mraa_i2c_init_raw(unsigned int bus) if ((dev->fh = open(filepath, O_RDWR)) < 1) { syslog(LOG_ERR, "i2c: Failed to open requested i2c port %s", filepath); } + syslog(LOG_DEBUG, "i2c: Opened i2c bus %s", filepath); if (ioctl(dev->fh, I2C_FUNCS, &dev->funcs) < 0) { syslog(LOG_CRIT, "i2c: Failed to get I2C_FUNC map from device");