Skip to content

Commit 42022fd

Browse files
I2CBus.java - remove unnecessary logging
1 parent 43ff3f2 commit 42022fd

File tree

1 file changed

+1
-1
lines changed
  • linux-core/src/main/java/ru/iothub/jef/linux/i2c

1 file changed

+1
-1
lines changed

linux-core/src/main/java/ru/iothub/jef/linux/i2c/I2CBus.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public I2CBus(String bus) throws NativeIOException {
129129
fd = Fcntl.getInstance().open(bus, EnumSet.of(IOFlags.O_RDWR));
130130
log.log(Level.INFO, () -> String.format("Opening I2C bus '%s' success", bus));
131131
func = loadFunctionality(fd);
132-
log.log(Level.INFO, () -> String.format("I2C bus '%s' support functionalities '%d'", bus, func));
132+
//log.log(Level.INFO, () -> String.format("I2C bus '%s' support functionalities '%d'", bus, func));
133133
}
134134

135135
/**

0 commit comments

Comments
 (0)