[Pcsclite-cvs-commit] r1792 - trunk/Drivers/ccid/src

Ludovic Rousseau rousseau at costa.debian.org
Wed Jan 11 09:14:47 UTC 2006


Author: rousseau
Date: 2006-01-11 09:14:47 +0000 (Wed, 11 Jan 2006)
New Revision: 1792

Modified:
   trunk/Drivers/ccid/src/ccid_usb.c
Log:
OpenUSBByName(): use log level INFO instead of CRITICAL to display
copyright information


Modified: trunk/Drivers/ccid/src/ccid_usb.c
===================================================================
--- trunk/Drivers/ccid/src/ccid_usb.c	2006-01-11 09:08:43 UTC (rev 1791)
+++ trunk/Drivers/ccid/src/ccid_usb.c	2006-01-11 09:14:47 UTC (rev 1792)
@@ -221,23 +221,23 @@
 	/* general driver info */
 	if (!LTPBundleFindValueWithKey(infofile, "ifdManufacturerString", keyValue, 0))
 	{
-		DEBUG_CRITICAL2("Manufacturer: %s", keyValue);
+		DEBUG_INFO2("Manufacturer: %s", keyValue);
 	}
 	else
 	{
-		DEBUG_CRITICAL2("LTPBundleFindValueWithKey error. Can't find %s?",
+		DEBUG_INFO2("LTPBundleFindValueWithKey error. Can't find %s?",
 			infofile);
 		return STATUS_UNSUCCESSFUL;
 	}
 	if (!LTPBundleFindValueWithKey(infofile, "ifdProductString", keyValue, 0))
 	{
-		DEBUG_CRITICAL2("ProductString: %s", keyValue);
+		DEBUG_INFO2("ProductString: %s", keyValue);
 	}
 	else
 		return STATUS_UNSUCCESSFUL;
 	if (!LTPBundleFindValueWithKey(infofile, "Copyright", keyValue, 0))
 	{
-		DEBUG_CRITICAL2("Copyright: %s", keyValue);
+		DEBUG_INFO2("Copyright: %s", keyValue);
 	}
 	else
 		return STATUS_UNSUCCESSFUL;




More information about the Pcsclite-cvs-commit mailing list