eve-log: output cleanup

Suppress debug messages and print in a nicer way which modules are
being enabled.
pull/879/head
Victor Julien 12 years ago
parent ed877c64d1
commit a3020b5306

@ -605,11 +605,11 @@ void RunModeInitializeOutputs(void)
// TODO if module == parent, find it's children
if (strcmp(output->val, "eve-log") == 0) {
ConfNode *types = ConfNodeLookupChild(output_config, "types");
SCLogInfo("types %p", types);
SCLogDebug("types %p", types);
if (types != NULL) {
ConfNode *type = NULL;
TAILQ_FOREACH(type, &types->head, next) {
SCLogInfo("type %s", type->val);
SCLogInfo("enabling 'eve-log' module '%s'", type->val);
char subname[256];
snprintf(subname, sizeof(subname), "%s.%s", output->val, type->val);

Loading…
Cancel
Save