tests CHANGE use logger in unit tests for yin parser
diff --git a/src/parser_yin.c b/src/parser_yin.c
index 7bccead..e648d48 100644
--- a/src/parser_yin.c
+++ b/src/parser_yin.c
@@ -506,7 +506,7 @@
         goto cleanup;
     } else if (kw != YANG_MODULE) {
         LOGVAL_YANG(xml_ctx, LYVE_SYNTAX, "Invalid keyword \"%s\", expected \"module\" or \"submodule\".",
-               ly_stmt2str(kw));
+                    ly_stmt2str(kw));
         ret = LY_EVALID;
         goto cleanup;
     }