ログ追加

This commit is contained in:
r-ca 2024-01-08 12:52:10 +09:00
parent 164b6ea6d4
commit 3540f20c46
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -50,7 +50,8 @@ public class XmlMetaParserImpl implements XmlMetaParser{
return meta; return meta;
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); logger.error("deserialize", "something wrong");
logger.trace("deserialize", e.getMessage());
} }
return null; return null;
} }
@ -83,7 +84,8 @@ public class XmlMetaParserImpl implements XmlMetaParser{
return document; return document;
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); logger.error("serialize", "something wrong");
logger.trace("serialize", e.getMessage());
} }
return null; return null;
} }