about summary refs log tree commit homepage
path: root/ext/clogger_ext/clogger.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/clogger_ext/clogger.c')
-rw-r--r--ext/clogger_ext/clogger.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/clogger_ext/clogger.c b/ext/clogger_ext/clogger.c
index cc08fac..ad5bbb9 100644
--- a/ext/clogger_ext/clogger.c
+++ b/ext/clogger_ext/clogger.c
@@ -824,6 +824,11 @@ static VALUE to_path(VALUE self)
         else
                 rv = stat(cpath, &sb);
 
+        /*
+         * calling this method implies the web server will bypass
+         * the each method where body_bytes_sent is calculated,
+         * so we stat and set that value here.
+         */
         c->body_bytes_sent = rv == 0 ? sb.st_size : 0;
         return path;
 }