]> git.ipfire.org Git - people/ms/strongswan.git/commitdiff
log SWID tags and tag IDs on debug level 3
authorAndreas Steffen <andreas.steffen@strongswan.org>
Tue, 27 May 2014 17:29:16 +0000 (19:29 +0200)
committerAndreas Steffen <andreas.steffen@strongswan.org>
Sat, 31 May 2014 18:37:56 +0000 (20:37 +0200)
src/libpts/swid/swid_inventory.c

index 4e696ef33ecdc28ec42cd1c269795cf7e5f77c6c..c1e284482823c30ee4cbe7e0dd75e3b394b0b02f 100644 (file)
@@ -96,7 +96,7 @@ static status_t read_swid_tags(private_swid_inventory_t *this, FILE *file)
                        {
                                tag_encoding.len--;
                        }
-                       DBG2(DBG_IMC, "  %.*s", tag_encoding.len, tag_encoding.ptr);
+                       DBG3(DBG_IMC, "  %.*s", tag_encoding.len, tag_encoding.ptr);
 
                        tag = swid_tag_create(tag_encoding, tag_file_path);
                        this->list->insert_last(this->list, tag);
@@ -132,7 +132,7 @@ static status_t read_swid_tag_ids(private_swid_inventory_t *this, FILE *file)
                {
                        len--;
                }
-               DBG2(DBG_IMC, "  %.*s", len, line);
+               DBG3(DBG_IMC, "  %.*s", len, line);
 
                separator = strchr(line, '_');
                if (!separator)