mirror of
https://github.com/Doodle3D/doodle3d-firmware.git
synced 2024-12-22 02:53:49 +01:00
Remove unnecessary require.
Change backup log file name in d3dapi script.
This commit is contained in:
parent
af76720e54
commit
9fd96740a3
@ -10,7 +10,6 @@ local lfs = require('lfs')
|
||||
local log = require('util.logger')
|
||||
local utils = require('util.utils')
|
||||
local settings = require('util.settings')
|
||||
local printDriver = require('print3d')
|
||||
local printerUtils = require('util.printer')
|
||||
local accessManager = require('util.access')
|
||||
|
||||
@ -165,6 +164,7 @@ end
|
||||
--accepts: id(string) (the printer ID to append to)
|
||||
--accepts: first(bool) (chunks will be concatenated but output file will be cleared first if this argument is true)
|
||||
--accepts: start(bool) (only when this argument is true will printing be started)
|
||||
--returns: when the gcode buffer cannot accept the gcode, or the IPC transaction fails, a fail with a (formal, i.e., parseable) status argument will be returned
|
||||
function M.print_POST(request, response)
|
||||
log:info(MOD_ABBR, "API:printer/print")
|
||||
|
||||
|
@ -10,15 +10,16 @@
|
||||
|
||||
LUA=lua
|
||||
SCRIPT_PATH=/usr/share/lua/wifibox
|
||||
LOG_FILE=/tmp/wifibox.log
|
||||
LOG_FILE=/tmp/wifibox.cgi-fallback.log
|
||||
|
||||
cd $SCRIPT_PATH
|
||||
echo "CGI invocation" >> $LOG_FILE
|
||||
#echo "CGI invocation" >> $LOG_FILE
|
||||
#strace -o /tmp/trace-$$.log -ff $LUA ./cmdmain.lua $@ 2>> $LOG_FILE
|
||||
$LUA ./cmdmain.lua $@ 2>> $LOG_FILE
|
||||
|
||||
exit $?
|
||||
|
||||
|
||||
# Code below is for debugging incoming CGI data
|
||||
read -n $CONTENT_LENGTH POSTDATA
|
||||
echo -e "Content-type: text/plain\r\n\r\n"
|
||||
|
Loading…
Reference in New Issue
Block a user