logswan

Fast Web log analyzer using probabilistic data structures
Log | Files | Refs | README | LICENSE

commit 1fd551dc8a75686b81624ef302ec47189de139de
parent ab15e3d8aa54b14ff7cc0b9d22d1fd74b0f5ddde
Author: Frederic Cambus <fcambus@users.sourceforge.net>
Date:   Sun,  8 Nov 2015 23:19:18 +0100

Remove header display and do not print name of processed file

Diffstat:
Msrc/logswan.c | 6------
1 file changed, 0 insertions(+), 6 deletions(-)

diff --git a/src/logswan.c b/src/logswan.c @@ -76,10 +76,6 @@ int main (int argc, char *argv[]) { hll_init(&uniqueIPv4, 20); hll_init(&uniqueIPv6, 20); - printf("-------------------------------------------------------------------------------\n" \ - " Logswan 1.02 (c) by Frederic Cambus 2015 \n" \ - "-------------------------------------------------------------------------------\n\n"); - while ((getoptFlag = getopt(argc, argv, "hv")) != -1) { switch(getoptFlag) { case 'h': @@ -113,8 +109,6 @@ int main (int argc, char *argv[]) { stat(intputFile, &logFileSize); results.fileSize = (uint64_t)logFileSize.st_size; - printf("Processing file : %s\n\n", intputFile); - if (!(logFile = fopen(intputFile, "r"))) { perror("Can't open log file"); return EXIT_FAILURE;