@@ -262,15 +262,15 @@ def __init__(self, **kwargs):
262262CloseKey (dyalogKey )
263263CloseKey (lastKey )
264264self .dyalog_subprocess = subprocess .Popen ([dyalogPath ,"RIDE_SPAWNED=1" ,"DYALOGQUIETUCMDBUILD=1" ,"Dyalog_LineEditor_Mode=1" ,'RIDE_INIT=SERVE::' + str (
265- self ._port ).strip (),'LOG_FILE=nul ' ,"DYALOGJUPYFOLDER=" + os .path .dirname (os .path .abspath (__file__ )),"LOAD=" + os .path .dirname (os .path .abspath (__file__ ))+ "\\ init.aplf" ])
265+ self ._port ).strip (),'LOG_FILE_INUSE=0 ' ,"DYALOGJUPYFOLDER=" + os .path .dirname (os .path .abspath (__file__ )),"LOAD=" + os .path .dirname (os .path .abspath (__file__ ))+ "\\ init.aplf" ])
266266else :
267267# linux, darwin... etc
268268dyalog_env = os .environ .copy ()
269269dyalog_env ['RIDE_INIT' ]= 'SERVE:*:' + str (self ._port ).strip ()
270270dyalog_env ['RIDE_SPAWNED' ]= '1'
271271dyalog_env ['DYALOGQUIETUCMDBUILD' ]= '1'
272272dyalog_env ['ENABLE_CEF' ]= '0'
273- dyalog_env ['LOG_FILE ' ]= '/dev/null '
273+ dyalog_env ['LOG_FILE_INUSE ' ]= '0 '
274274dyalog_env ['DYALOG_LINEEDITOR_MODE' ]= '1'
275275dyalog_env ['DYALOGJUPYFOLDER' ]= os .path .dirname (os .path .abspath (__file__ ))
276276if shutil .which ('mapl' ):