Skip to content

Commit 6edafc7

Browse files
authored
fix: remove unnecessary new line in logs of driver initialization (espressif#500)
yes - because it hurt my eyes to see logs with this one, weird empty line...
1 parent 2478a5f commit 6edafc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

driver/sccb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ int SCCB_Init(int pin_sda, int pin_scl)
5656

5757
sccb_i2c_port = SCCB_I2C_PORT_DEFAULT;
5858
sccb_owns_i2c_port = true;
59-
ESP_LOGI(TAG, "sccb_i2c_port=%d\n", sccb_i2c_port);
59+
ESP_LOGI(TAG, "sccb_i2c_port=%d", sccb_i2c_port);
6060

6161
conf.mode = I2C_MODE_MASTER;
6262
conf.sda_io_num = pin_sda;

0 commit comments

Comments
 (0)