safedb 디버깅

This commit is contained in:
Rinjae
2025-09-25 18:18:03 +09:00
parent 462d589b3e
commit 0b2db31b42
@@ -93,7 +93,7 @@ public class SafeDBWrapper extends SafeDBBroker {
// new Class<?>[]{String.class, String.class, String.class, String.class},
// new Object[]{userId, table, column, data});
log.debug("[SafeDBWrapper] real / userId : {}, table : {}, column : {}, data : {}", userId, table, column, data);
return safedb.encrypt(userId, table, column, data);
return safedb.encrypt(userId, table, column, data.getBytes());
} catch (Exception e) {
throw new SafeDBWrapperSdkException("[SafeDBWrapper] Encrypt error: " + e.getMessage(), e);
}