@@ -292,7 +292,7 @@ def create_lock_file(self):
292
292
f .write (lock_value )
293
293
break
294
294
except Exception :
295
- log .warning ('Failed to write lock file (attempt: %s)' % attempts )
295
+ log .debug ('Failed to write lock file (attempt: %s)' % attempts )
296
296
attempts -= 1
297
297
sleep (0.25 )
298
298
@@ -307,7 +307,7 @@ def destroy_lock_file(self):
307
307
os .remove (lock_path )
308
308
break
309
309
except Exception :
310
- log .warning ('Failed to destroy lock file (attempt: %s)' % attempts )
310
+ log .debug ('Failed to destroy lock file (attempt: %s)' % attempts )
311
311
attempts -= 1
312
312
sleep (0.25 )
313
313
@@ -2591,7 +2591,7 @@ def FrameExported(self, title_message, start_frame, end_frame, current_frame):
2591
2591
self .unity_launcher .set_property ("progress" , current_frame / (end_frame - start_frame ))
2592
2592
self .unity_launcher .set_property ("progress_visible" , True )
2593
2593
except Exception :
2594
- log .warning ('Failed to notify unity launcher of export progress. Frame: %s' % current_frame )
2594
+ log .debug ('Failed to notify unity launcher of export progress. Frame: %s' % current_frame )
2595
2595
2596
2596
def ExportFinished (self , path ):
2597
2597
"""Show completion in Unity Launcher (if connected)"""
@@ -2600,7 +2600,7 @@ def ExportFinished(self, path):
2600
2600
self .unity_launcher .set_property ("progress" , 0.0 )
2601
2601
self .unity_launcher .set_property ("progress_visible" , False )
2602
2602
except Exception :
2603
- log .warning ('Failed to notify unity launcher of export progress. Completed.' )
2603
+ log .debug ('Failed to notify unity launcher of export progress. Completed.' )
2604
2604
2605
2605
def __init__ (self , mode = None ):
2606
2606
0 commit comments