[Groonga-commit] groonga/groonga [master] Reduce abbreviation

Back to archive index

Kouhei Sutou null+****@clear*****
Thu Jan 10 11:15:15 JST 2013


Kouhei Sutou	2013-01-10 11:15:15 +0900 (Thu, 10 Jan 2013)

  New Revision: e9ff1a6968c8d7f36b6fd27551318e5362e0c892
  https://github.com/groonga/groonga/commit/e9ff1a6968c8d7f36b6fd27551318e5362e0c892

  Log:
    Reduce abbreviation
    
    msg ->
    message

  Modified files:
    lib/ctx.c

  Modified: lib/ctx.c (+3 -3)
===================================================================
--- lib/ctx.c    2013-01-10 11:14:01 +0900 (220f581)
+++ lib/ctx.c    2013-01-10 11:15:15 +0900 (4256ae1)
@@ -689,7 +689,7 @@ static grn_critical_section default_logger_lock;
 static void
 default_logger_log(grn_ctx *ctx, grn_log_level level,
                    const char *timestamp, const char *title,
-                   const char *msg, const char *location, void *user_data)
+                   const char *message, const char *location, void *user_data)
 {
   const char slev[] = " EACewnid-";
   if (grn_log_path) {
@@ -700,10 +700,10 @@ default_logger_log(grn_ctx *ctx, grn_log_level level,
     if (default_logger_fp) {
       if (location && *location) {
         fprintf(default_logger_fp, "%s|%c|%s %s %s\n",
-                timestamp, *(slev + level), title, msg, location);
+                timestamp, *(slev + level), title, message, location);
       } else {
         fprintf(default_logger_fp, "%s|%c|%s %s\n", timestamp,
-                *(slev + level), title, msg);
+                *(slev + level), title, message);
       }
       fflush(default_logger_fp);
     }
-------------- next part --------------
HTML����������������������������...
Download 



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