[Groonga-commit] groonga/groonga at 5d10e0b [master] Use common format for init failed messages

Back to archive index

Kouhei Sutou null+****@clear*****
Wed May 13 10:54:25 JST 2015


Kouhei Sutou	2015-05-13 10:54:25 +0900 (Wed, 13 May 2015)

  New Revision: 5d10e0b688923d8d82a3f5c2828af94b3d3c50a6
  https://github.com/groonga/groonga/commit/5d10e0b688923d8d82a3f5c2828af94b3d3c50a6

  Message:
    Use common format for init failed messages

  Modified files:
    lib/ctx.c

  Modified: lib/ctx.c (+3 -3)
===================================================================
--- lib/ctx.c    2015-05-13 10:53:01 +0900 (af18c69)
+++ lib/ctx.c    2015-05-13 10:54:25 +0900 (2798872)
@@ -900,11 +900,11 @@ grn_init(void)
   }
   grn_ctx_impl_init(ctx);
   if ((rc = grn_io_init())) {
-    GRN_LOG(ctx, GRN_LOG_ALERT, "io initialize failed (%d)", rc);
+    GRN_LOG(ctx, GRN_LOG_ALERT, "grn_io_init failed (%d)", rc);
     return rc;
   }
   if ((rc = grn_ii_init())) {
-    GRN_LOG(ctx, GRN_LOG_ALERT, "ii initialize failed (%d)", rc);
+    GRN_LOG(ctx, GRN_LOG_ALERT, "grn_ii_init failed (%d)", rc);
     return rc;
   }
   if ((rc = grn_proc_init())) {
@@ -912,7 +912,7 @@ grn_init(void)
     return rc;
   }
   if ((rc = grn_plugins_init())) {
-    GRN_LOG(ctx, GRN_LOG_ALERT, "plugins initialize failed (%d)", rc);
+    GRN_LOG(ctx, GRN_LOG_ALERT, "grn_plugins_init failed (%d)", rc);
     return rc;
   }
   if ((rc = grn_normalizer_init())) {
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index