[ https://issues.apache.org/jira/browse/METRON-633?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16033710#comment-16033710 ]
ASF GitHub Bot commented on METRON-633: --------------------------------------- Github user zezutom commented on a diff in the pull request: https://github.com/apache/metron/pull/572#discussion_r119730181 --- Diff: metron-platform/metron-enrichment/src/main/java/org/apache/metron/enrichment/writer/SimpleHbaseEnrichmentWriter.java --- @@ -169,16 +188,19 @@ public HTableInterface getTable(Map<String, Object> config) throws IOException { private List<String> getColumns(Object keyColumnsObj, boolean allowNull) { Object o = keyColumnsObj; if(allowNull && keyColumnsObj == null) { + LOG.debug("No key columns were specified"); return Collections.emptyList(); } if(o instanceof String) { + LOG.debug("Key column: '" + o + "'"); --- End diff -- Thanks everyone for a great feedback! @justinleet I will rebase once #599 is merged, cheers. > Create better logging for HbaseEnrichmentWriter > ----------------------------------------------- > > Key: METRON-633 > URL: https://issues.apache.org/jira/browse/METRON-633 > Project: Metron > Issue Type: Bug > Reporter: Casey Stella > Assignee: Tomas Zezula > Labels: newbie > > Right now our debug logging is nonexistent for this writer and it makes > tracking down issues almost impossible. This should be corrected. -- This message was sent by Atlassian JIRA (v6.3.15#6346)