From: Uwe Hermann Date: Sun, 26 Feb 2017 14:43:35 +0000 (+0100) Subject: hwdriver: Drop unneeded debug message. X-Git-Tag: libsigrok-0.5.0~119 X-Git-Url: https://sigrok.org/gitweb/?a=commitdiff_plain;ds=sidebyside;h=97c2710b2c985132ed6a28caf9741ccbcfb23491;p=libsigrok.git hwdriver: Drop unneeded debug message. The logs already show scan attempts per-driver, no need to also log the init per-driver, since that's always happening and cannot (normally) fail. --- diff --git a/src/hwdriver.c b/src/hwdriver.c index 20fc3bb9..dcf9b1f4 100644 --- a/src/hwdriver.c +++ b/src/hwdriver.c @@ -391,7 +391,6 @@ SR_API int sr_driver_init(struct sr_context *ctx, struct sr_dev_driver *driver) return SR_ERR_ARG; } - sr_spew("Initializing driver '%s'.", driver->name); if ((ret = driver->init(driver, ctx)) < 0) sr_err("Failed to initialize the driver: %d.", ret);