aboutsummaryrefslogtreecommitdiff
path: root/captain/postutils.f90
diff options
context:
space:
mode:
Diffstat (limited to 'captain/postutils.f90')
-rw-r--r--captain/postutils.f904
1 files changed, 0 insertions, 4 deletions
diff --git a/captain/postutils.f90 b/captain/postutils.f90
index 2961f98..1d4c666 100644
--- a/captain/postutils.f90
+++ b/captain/postutils.f90
@@ -22,14 +22,12 @@ contains
else
content_length = 0
end if
- call write_log("Content Length is: "//trim(header_info), LOG_DEBUG)
call get_environment_variable("CONTENT_TYPE", header_info, status=istat)
if(content_length > 0 .and. &
istat == 0 .and. &
trim(header_info) == content_type_required) &
then
- call write_log("Processing post", LOG_DEBUG)
allocate(character(len=content_length) :: transfered)
@@ -42,8 +40,6 @@ contains
deallocate(transfered)
end if
-
- call write_log("Content Type is: "//trim(header_info), LOG_DEBUG)
end function read_post_contents