Navigation Menu

Skip to content

Commit

Permalink
changed log file name from "mroonga.log" to "groonga.log" and initial…
Browse files Browse the repository at this point in the history
…ization message.
  • Loading branch information
ikdttr committed Nov 16, 2010
1 parent 9e60193 commit be12349
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ha_mroonga.cc
Expand Up @@ -244,7 +244,7 @@ int mrn_init(void *p)
goto err;
}
mrn_logfile_opened = 1;
GRN_LOG(ctx, GRN_LOG_NOTICE, "%s init", MRN_PACKAGE_STRING);
GRN_LOG(ctx, GRN_LOG_NOTICE, "%s started.", MRN_PACKAGE_STRING);

// init meta-info database
if (!(mrn_db = grn_db_create(ctx, NULL, NULL))) {
Expand Down
4 changes: 2 additions & 2 deletions mrnsys.h
Expand Up @@ -21,12 +21,12 @@
#include <groonga.h>

/* constants */
#define MRN_PACKAGE_STRING "mroonga 0.1"
#define MRN_PACKAGE_STRING "groonga-storage-engine"
#define MRN_MAX_KEY_SIZE 1024
#define MRN_MAX_PATH_SIZE 256
#define MRN_MAX_EXPRS 32
#define MRN_DB_FILE_SUFFIX ".mrn"
#define MRN_LOG_FILE_NAME "mroonga.log"
#define MRN_LOG_FILE_NAME "groonga.log"
#define MRN_LEX_SUFFIX "_lex"
#define MRN_HASH_SUFFIX "_hash"
#define MRN_PAT_SUFFIX "_pat"
Expand Down

0 comments on commit be12349

Please sign in to comment.