aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2025-07-08 13:54:26 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2025-07-08 13:54:26 -0400
commit76f50b85171ef007672a112da6faeeb4bb35da03 (patch)
tree9b16d9a14056b3db0e8dfa55de4f616002546752 /src
parent1209bdcc6e6131d12fc0923d771e14d9d65635e2 (diff)
downloadstasis-76f50b85171ef007672a112da6faeeb4bb35da03.tar.gz
Disable noisy debug statements
Diffstat (limited to 'src')
-rw-r--r--src/lib/core/template.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/core/template.c b/src/lib/core/template.c
index 68d20c9..dd3c7a2 100644
--- a/src/lib/core/template.c
+++ b/src/lib/core/template.c
@@ -280,8 +280,8 @@ char *tpl_render(char *str) {
output[z] = pos[off];
z++;
}
- SYSDEBUG("template output length: %zu", strlen(output));
- SYSDEBUG("template output bytes: %zu", output_bytes);
+ //SYSDEBUG("template output length: %zu", strlen(output));
+ //SYSDEBUG("template output bytes: %zu", output_bytes);
return output;
}