File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -814,7 +814,8 @@ int Transaction::processRequestBody() {
814
814
m_variableReqbodyError.set (" 1" , 0 );
815
815
m_variableReqbodyErrorMsg.set (" Request body excluding files is bigger than the maximum expected." , 0 );
816
816
m_variableInboundDataError.set (" 1" , m_variableOffset);
817
- ms_dbg (5 , " Request body excluding files is bigger than the maximum expected." );
817
+ ms_dbg (5 , " Request body excluding files is bigger than the maximum expected. Limit: " \
818
+ + std::to_string (m_rules->m_requestBodyNoFilesLimit .m_value ));
818
819
requestBodyNoFilesLimitExceeded = true ;
819
820
}
820
821
}
@@ -901,7 +902,8 @@ int Transaction::processRequestBody() {
901
902
m_variableReqbodyError.set (" 1" , 0 );
902
903
m_variableReqbodyErrorMsg.set (" Request body excluding files is bigger than the maximum expected." , 0 );
903
904
m_variableInboundDataError.set (" 1" , m_variableOffset);
904
- ms_dbg (5 , " Request body excluding files is bigger than the maximum expected." );
905
+ ms_dbg (5 , " Request body excluding files is bigger than the maximum expected. Limit: " \
906
+ + std::to_string (m_rules->m_requestBodyNoFilesLimit .m_value ));
905
907
} else {
906
908
m_variableReqbodyError.set (" 0" , m_variableOffset);
907
909
m_variableReqbodyProcessorError.set (" 0" , m_variableOffset);
You can’t perform that action at this time.
0 commit comments