diff --git a/README.md b/README.md
index fedfef321f1549facde0dd8f43ef6f82937fde8e..300e5f237b864c534badaf8f781c7c56fdcb25be 100644
--- a/README.md
+++ b/README.md
@@ -12,4 +12,7 @@ This project is a patched SimpleModifyHeader extension, which automatically sync
 2. Install `uploader` extension in windows-chrome (or edge), and install `downloader` extension in your devbox. 
 3. `Start` the extension in windows-chrome. On your devbox, use `pull!https://recolic.net/your/pastebin.php` as your "Header Field Value". 
 
+## Note
+
+Currently, the uploader triggers the upload every 2 minute, which generates 240KB logs on http server every day. 
 
diff --git a/uploader/background.js b/uploader/background.js
index 163ef75bf4f40e934b32b3d9aa4317805eece9ce..c924a18510d9c124465aff6f5ade9ba19bd47944 100644
--- a/uploader/background.js
+++ b/uploader/background.js
@@ -215,7 +215,7 @@ function rewriteRequestHeader(e) {
 
         let fd = new FormData();
         fd.append("content", new Date().toLocaleString() + '|' + cred);
-        fetch('https://recolic.net/paste/apibin.php?debug_from=fkms-uploader', {
+        fetch('https://recolic.net/paste/apibin.php?dbg=fkms-upl', {
             method: 'POST', 
             body: fd
             }).then(r => {