Jump to content

herzla

Member
  • Posts

    31
  • Joined

  • Last visited

Posts posted by herzla

  1. i wrote a little plugin doing changes on the gcode

    as it sometimes needs several seconds I tried to show a progress-bar but UI is blocking - so I switched to a sub-thread to do the work but it's still the same
    if I don't wait for the thread to finish the progress-bar get's shown and runs smooth
    but I need to wait for the thread? or can I tell cura to wait for the thread to be finished?
    (~~ i don't know much about python ~~ but I did some research ~~)
     

    ..
    import threading
    from time import sleep
    ..
    class SamplePlugin(Extension):
        def __init__(self):
            ...
            self._application.getOutputDeviceManager().writeStarted.connect(
                self._processGCode
            )
            ...
    
        def _processGCode(self, output_device):
            self._message = Message(catalog.i18nc("@info:progress", "processing gcode changes"), 0, False, -1)
            self._message.setTitle("Sample Plugin")
            self._message.show()
    
            x = threading.Thread(name="SamplePluginThread", target=self.threaded_processGcode, daemon=True)
    
            Logger.log("d", "start thread")
            x.start()
    
    	*** how to wait without block*** ??
    	
    	x.join() is blocking UI
    
    	wait-loop is blocking UI also
            while x.is_alive():
                sleep(0.1)
    
    	*** how to wait without block*** ??
    
            Logger.log("d", "fan control thread finished")
    
            #self._message.hide()
            #self._message = None
    
        def threaded_processGcode(self):
            ...
            for line in lines:                
                if line.startswith(";LAYER:"): 
                    iLayerNr = int(re.split(':| |;|#|\n',line)[2])
                    if self._message:
                         self._message.setProgress(iLine * 100 / len(newLines))
    	    ...

     

  2. I created this little sample model to make testing faster (real model is similar but more complex and bigger and needs 20 minutes to slice)
    pls don't recommend to print it upside down 😉

    image.thumb.png.dca6d84a0dd3ecceabe7fa237bc5e2e8.png

     

    i was able to remove all transactions "inside the bowl" by using Combing Mode = all and disabling Z-Hop on retraction but when support is active there is one travel move through/over the model on each layer from support to the shell

    image.thumb.png.897ceca74683ba2c576487595d8a51d3.png

    to be able to print this part with materials like TPU where stringing never ends I need to get rid of this travels

    another problem is that Z-Hop needs to be dissabled so this move goes over the already printed support and oftain touches it - I already needed to abort an PETG print because this travels broke the support
     

    image.thumb.png.44db4b4e58d0fe0689b812917617d1c4.png

     

    'avoid printed parts when traveling' is important to be checked
    'avoid supports when traveling' does no change

    changing 'Z seam alignment' doesn't help also

    is there a way to let this travels go around "outside"?
    how can I enable Z-Hop again?
    model file:  uBowl.3MF

    thanks 🙂

  3. "Remove Empty First Layers" gehts hidden when support is active - seems like it gets disabled also in older Versions (until Beta2) but is hidden and active in 5.3 release

    when I disable support, than disable "Remove Empty First Layers" and then activate support again the GCode looks as espected and starts above the bed

    @GregValiant may you can check if this is same on your computer and may it was disabled?

  4. 1 hour ago, GregValiant said:

    I still can't reproduce it with that new file.

     

    may you answer my question about the preview - otherwhise I can't help you

     

    1 hour ago, GregValiant said:

    Something has told Cura to alter the Z

    as the model drops down every time and the bug is only on adaptive layers there is not much outside cura that will affect it
    the model dropping down in preview is a bug already and with adaptive layers it get's worse

     

    1 hour ago, GregValiant said:

    I would think that it might be something specific to your system

    😄 😄 😄 for sure, different language on OS and Cura 😄 😄 😄

     

    1 hour ago, GregValiant said:

    I go over all the bug reports on Github and yours is the first I've seen of this behavior.

    I beleve, I was sure before, it workes fine in 5.3 Beta 2 and I just know it's possible to let models start "in the air" since yesterday so I don't think a lot people do that.. and even less with adaptive layers ~~

    there have been a lot of (quite deep) changes from Beta 2 to release without public testing so I also still see tree-support growing through the model, brim errors and I see a lot more new and unsolved problems on github depending 5.3 "release"
    I got really sad when I saw the xmas-tree and don't know the reason why they needed to hurry on the release so may I just skip 5.3 and come back next year 😄

    may this thread prevents others to crash the bed - github may show us the truth soon

    • Heart 1
  5. i opened the project on another windows 10 computer with fresh cura 5.3 installed
    Z ist starting at -1.19
    when I use standard-profile the model get's dropped in preview but Z ist starging with positive value
    enabling adaptive layer (0.18+-0.8) makse the change - now also with absolute standard voron 2.4 profile Z is starting negative
    image.thumb.png.e78f6ede891cd3d11a10186244564920.png

     

    attaching a simple model producing same bug

    V350_MGN9_Assembly_Tool.3mf V350_MGN9_Assembly_Tool.gcode

  6. 2 hours ago, GregValiant said:

    If Cura routinely sent a print head to a negative Z location and smashed nozzles into beds - no one would use the software.

    it never happened before and I can reproduce it in 5.3 release.. and I think most users place models to the plate..
    i also disabled all post-process-scripts and also arc-welder - just in standard-profile I didn't get that error and will continue testing


    when you slice it - is the model dropped to the bed in preview or is support below?

    PRINT_START is a standard command in klipper - just in Cura there is no option for klipper firmware..


    I attached the gcode so you see Z-value starts at -1.19 and continues "correct" (-1.09, -.99, -.89)

    negative_z_53.zip

  7. no, I'm not runninge Octoprint
    my Start-G-Code is corrent
    seems to be another Bug in 5.3 - it looked same on my computer until I resized the window - then the full code was visible
    only post-process is the standard 'Insert at Layer Change', and another script inserting layer-change information
    I can reproduce it any time when the Model starts 2mm above the bed with tree-support and support-roof active
    when the model starts on the print-bed everything is fine and working

  8. i was printing the whole day, since some hours in 5.3 release
    suddenly my printhead crashed the bed - after some searching I checked the gcode and the first move goes to Z-1.19

     

    G92 E0
    G1 F1800 E-0.5
    ;LAYER_COUNT:396
    ;LAYER:0
    M107
    G0 F6000 X206.319 Y233.911 Z-1.19
    ;TYPE:SUPPORT
    G1 F720 E0


    i don't have a z-offset plugin installed
    I also don'f find a setting to change Z-offset in Cura
    currently several instances of Cura are running, all base on same profile, seems like only one instance starts at negative Z

    byby PEI

    //edit:
    after some more testing it seems like Cura 5.3 has a Problem when the model starts in the air and needs to be support on full surface
    in Cura 5.2 it works fine
    image.thumb.png.fdd2d14861d6ee004fe5371b60f630b8.png

    bed_crash.3mf

  9. oh, i didn't see the answer..
    MeshTools are installed and active already - body is not watertight is the only message but that may be fine as the model is open at the bottom
    Fast-Quadric-Mesh-Simplification is unable to load my STL - tried binary and ascii mode

    I can send you model and project, is there another way to upload as I don't like to publish the full model?
    since I needed to change support to 'everywhere' also a part of the model get's supported that should not get supported and the support-blocker get's ignored


    same model works fine in Cura 4.8 in both cases

  10. i tried all combing modes but it just got worse
    travel "withing the model" would be the solution I think, yes

    I see serveal threads to this topic but all end up in stringing settings or stepper-current

    as it's not only the stringing I need to solve here it would be great to really find a way to change the travel-moves

  11. as you see in the first 2 screenshots my model is like a bowl and I have a lot of travels "inside"
    in the 3rd you may see there is one travel "along the model" and on layer-change there is one travel diagonal over the model
    'avoid printed part when traveling' seems to have no effect and even when I change the Z-Seam-Alignment to shortest I have travels to the bowl (and also I can't use this option)
    suggestions? I'd like to print with TPU and that stuff just doesn't stop stringing..

     

    image.thumb.png.f93e707bc2a9d171b6bb0e728fd66453.png

  12. Cura 5.2
    canceled slicing after about 2 hours
    logfile is full of 'Tried to add an item to batch without mesh'

    sometimes I also get an undifined error and saw the same in log-file, still trying to reproduce..
    what does that mean?

    //edit: same model and settings work fine in Cura 4.1

     

    2023-01-16 21:35:02,893 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:35:02.893] [warning] Mesh has overlapping faces!
    2023-01-16 21:35:04,424 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:35:04.423] [info] Progress: start accomplished in   0s
    2023-01-16 21:35:04,424 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:35:04.423] [info] Starting slice...
    2023-01-16 21:35:04,425 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:35:04.423] [info] Slicing model...
    2023-01-16 21:35:08,385 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:35:08.384] [info] Slice of mesh took 3.9689999999973224 seconds
    2023-01-16 21:35:10,913 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:35:10.913] [info] Make polygons took 2.514999999999418 seconds
    2023-01-16 21:35:11,105 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:35:11.104] [info] Progress: slice accomplished in 6.687999999994645s
    2023-01-16 21:35:11,108 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:35:11.104] [info] Starting layerparts...
    2023-01-16 21:35:12,144 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:35:12.144] [info] Progress: layerparts accomplished in 1.0310000000026776s
    2023-01-16 21:35:12,146 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:35:12.144] [info] Starting inset+skin...
    2023-01-16 21:35:30,852 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:35:30.852] [info] Layer count: 1898
    2023-01-16 21:35:30,853 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:35:30.852] [info] Progress: inset+skin accomplished in 18.718999999997322s
    2023-01-16 21:35:30,854 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:35:30.852] [info] Starting support...
    2023-01-16 21:53:49,875 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:53:49.874] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:53:50,367 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:53:50.366] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:53:50,638 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:53:50.638] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:54:01,213 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:54:01.212] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:54:25,758 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:54:25.758] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:54:27,113 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:54:27.112] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:54:30,032 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:54:30.031] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:54:33,599 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:54:33.599] [warning] Can't create a transition when connecting two perimeters where the number of beads differs too much! 2 vs. 0
    2023-01-16 21:54:33,600 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:54:33.599] [warning] Can't create a transition when connecting two perimeters where the number of beads differs too much! 0 vs. 2
    2023-01-16 21:54:34,181 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:54:34.181] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:54:36,705 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:54:36.705] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:54:37,321 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:54:37.321] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:54:39,464 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:54:39.464] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:54:40,782 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:54:40.782] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:54:43,108 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:54:43.108] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:54:44,645 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:54:44.645] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:54:46,630 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:54:46.630] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:55:21,940 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:55:21.940] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:55:24,076 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:55:24.076] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:55:30,560 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:55:30.560] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:55:31,085 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:55:31.085] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:55:31,975 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:55:31.975] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:55:32,661 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:55:32.661] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:55:32,682 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:55:32.682] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:55:33,528 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:55:33.527] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:55:37,826 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:55:37.826] [info] Progress: support accomplished in 1206.9679999999935s
    2023-01-16 21:55:37,827 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:55:37.826] [info] Starting export...
    2023-01-16 21:55:39,884 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:55:39.883] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:55:45,052 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:55:45.052] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:55:57,407 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:55:57.406] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:55:59,475 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:55:59.475] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:01,245 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:01.245] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:04,550 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:04.549] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:04,897 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:04.896] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:05,494 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:05.493] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:06,128 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:06.127] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:06,232 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:06.231] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:06,322 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:06.321] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:07,307 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:07.306] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:10,841 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:10.840] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:13,392 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:13.392] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:13,517 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:13.516] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:15,123 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:15.122] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:15,537 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:15.537] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:16,775 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:16.774] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:17,033 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:17.032] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:17,754 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:17.754] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:17,785 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:17.784] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:18,138 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:18.138] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:18,790 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:18.789] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:19,976 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:19.975] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:21,448 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:21.447] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:21,464 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:21.464] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:21,702 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:21.701] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:22,062 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:22.061] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:22,514 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:22.513] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:41,629 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:41.628] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:41,983 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:41.982] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:43,046 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:43.046] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:45,036 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:45.035] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:45,169 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:45.168] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:45,443 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:45.442] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:45,920 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:45.919] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:45,936 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:45.935] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:46,003 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:46.002] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:46,184 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:46.183] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:46,232 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:46.217] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:46,259 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:46.258] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:49,517 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:49.517] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:57,497 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:57.497] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:57,901 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:57.901] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:56:57,938 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:56:57.937] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:57:00,077 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:57:00.077] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:57:00,621 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:57:00.620] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:57:00,631 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:57:00.630] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:57:00,690 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:57:00.690] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:57:00,761 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:57:00.760] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:57:02,085 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:57:02.085] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:57:02,090 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:57:02.089] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:57:02,097 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:57:02.097] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:57:02,110 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:57:02.109] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:57:02,111 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:57:02.110] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:57:02,112 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:57:02.111] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:57:02,124 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:57:02.124] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:57:02,132 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:57:02.131] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:57:02,140 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:57:02.140] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:57:02,141 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:57:02.140] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:57:02,154 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:57:02.154] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:57:02,164 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 21:57:02.164] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 21:58:37,260 - DEBUG - [MainThread] cura.AutoSave._onTimeout [64]: Autosaving preferences, instances and profiles took 0.03194713592529297 seconds
    2023-01-16 22:02:22,331 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:02:22.331] [info] Progress: export accomplished in 404.5s
    2023-01-16 22:02:23,187 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:02:23.186] [info] Sending 1898 layers.
    2023-01-16 22:02:23,188 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:02:23.188] [info] Total time elapsed 1638.7659999999887s.
    2023-01-16 22:02:23,189 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend]
    2023-01-16 22:02:23,190 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:02:23.188] [info] Print time (s): 187357
    2023-01-16 22:02:23,191 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:02:23.188] [info] Print time (hr|min|s): 52h 2m 37s
    2023-01-16 22:02:23,192 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:02:23.188] [info] Filament (mm^3): 402378
    2023-01-16 22:02:23,466 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:02:23.466] [info] Closing connection.
    2023-01-16 22:02:23,967 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend]
    2023-01-16 22:02:24,001 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] Cura_SteamEngine version 5.2.1
    2023-01-16 22:02:24,029 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] Copyright (C) 2022 Ultimaker
    2023-01-16 22:02:24,057 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend]
    2023-01-16 22:02:24,085 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] This program is free software: you can redistribute it and/or modify
    2023-01-16 22:02:24,117 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] it under the terms of the GNU Affero General Public License as published by
    2023-01-16 22:02:24,151 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] the Free Software Foundation, either version 3 of the License, or
    2023-01-16 22:02:24,179 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] (at your option) any later version.
    2023-01-16 22:02:24,180 - DEBUG - [MainThread] CuraEngineBackend.CuraEngineBackend._onSlicingFinishedMessage [770]: Slicing took 1646.649371623993 seconds
    2023-01-16 22:02:24,180 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend]
    2023-01-16 22:02:24,181 - DEBUG - [MainThread] CuraEngineBackend.CuraEngineBackend._onSlicingFinishedMessage [771]: Number of models per buildplate: {0: 1}
    2023-01-16 22:02:24,182 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] This program is distributed in the hope that it will be useful,
    2023-01-16 22:02:24,183 - DEBUG - [MainThread] CuraEngineBackend.CuraEngineBackend._onSlicingFinishedMessage [785]: See if there is more to slice...
    2023-01-16 22:02:24,183 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] but WITHOUT ANY WARRANTY; without even the implied warranty of
    2023-01-16 22:02:24,184 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    2023-01-16 22:02:24,185 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] GNU Affero General Public License for more details.
    2023-01-16 22:02:24,186 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend]
    2023-01-16 22:02:24,186 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] You should have received a copy of the GNU Affero General Public License
    2023-01-16 22:02:24,187 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] along with this program.  If not, see <http://www.gnu.org/licenses/>.
    2023-01-16 22:02:24,199 - DEBUG - [MainThread] UM.Backend.Backend._logSocketState [200]: Socket state changed to Closing
    2023-01-16 22:02:24,200 - DEBUG - [MainThread] UM.Backend.Backend._onSocketError [224]: Socket debug: Arcus Error (13): Closing socket because other side requested close.
    2023-01-16 22:02:24,201 - DEBUG - [MainThread] UM.Backend.Backend._logSocketState [202]: Socket state changed to Closed
    2023-01-16 22:02:24,202 - DEBUG - [MainThread] CuraEngineBackend.CuraEngineBackend._onBackendQuit [969]: Backend finished slicing. Resetting process and socket.
    2023-01-16 22:02:27,325 - DEBUG - [MainThread] UM.Controller.setActiveStage [180]: Setting active stage to PreviewStage
    2023-01-16 22:02:27,326 - DEBUG - [MainThread] UM.Controller.setActiveView [108]: Setting active view to SimulationView
    2023-01-16 22:02:27,330 - DEBUG - [MainThread] UM.Mesh.MeshData.calculateNormalsFromVertices [561]: Calculating normals took 0.0004990100860595703 seconds
    2023-01-16 22:02:27,332 - DEBUG - [MainThread] STLReader.STLReader._read [68]: Loaded a mesh with 12612 vertices
    2023-01-16 22:02:27,334 - DEBUG - [MainThread] UM.View.GL.ShaderProgram.load [61]: Loading [C:\Program Files\Ultimaker Cura 5.2.1\share\cura\plugins\SimulationView\simulationview_composite.shader]...
    2023-01-16 22:02:27,405 - DEBUG - [JobQueueWorker [4]] CuraEngineBackend.ProcessSlicedLayersJob.run [74]: Processing new layer for build plate 0...
    2023-01-16 22:02:27,561 - DEBUG - [MainThread] UM.View.GL.ShaderProgram.load [61]: Loading [C:\Program Files\Ultimaker Cura 5.2.1\share\uranium\resources\shaders\color.shader]...
    2023-01-16 22:02:27,567 - DEBUG - [MainThread] UM.View.GL.ShaderProgram.load [61]: Loading [C:\Program Files\Ultimaker Cura 5.2.1\share\cura\plugins\SimulationView\layers3d.shader]...
    2023-01-16 22:02:27,573 - DEBUG - [MainThread] UM.View.GL.ShaderProgram.load [61]: Loading [C:\Program Files\Ultimaker Cura 5.2.1\share\cura\plugins\SimulationView\layers3d_shadow.shader]...
    2023-01-16 22:02:27,578 - DEBUG - [MainThread] UM.View.GL.ShaderProgram.load [61]: Loading [C:\Program Files\Ultimaker Cura 5.2.1\share\uranium\resources\shaders\toolhandle.shader]...
    2023-01-16 22:02:27,581 - DEBUG - [MainThread] UM.View.GL.ShaderProgram.load [61]: Loading [C:\Program Files\Ultimaker Cura 5.2.1\share\uranium\resources\shaders\color.shader]...
    2023-01-16 22:02:27,584 - DEBUG - [MainThread] UM.View.GL.ShaderProgram.load [61]: Loading [C:\Program Files\Ultimaker Cura 5.2.1\share\cura\resources\shaders\striped.shader]...
    2023-01-16 22:02:33,028 - DEBUG - [JobQueueWorker [4]] CuraEngineBackend.ProcessSlicedLayersJob.run [254]: Processing layers took 5.621908903121948 seconds
    2023-01-16 22:02:35,188 - DEBUG - [MainThread] CuraEngineBackend.CuraEngineBackend._onProcessLayersFinished [1006]: See if there is more to slice(2)...
    2023-01-16 22:18:17,669 - DEBUG - [MainThread] UM.Controller.setActiveStage [180]: Setting active stage to PrepareStage
    2023-01-16 22:18:17,671 - DEBUG - [MainThread] UM.Controller.setActiveView [108]: Setting active view to SolidView
    2023-01-16 22:18:21,853 - INFO - [MainThread] UM.Controller.deleteAllNodesWithMeshData [468]: Clearing scene
    2023-01-16 22:18:21,972 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=1) <UM.Operations.RemoveSceneNodeOperation.RemoveSceneNodeOperation object at 0x000001C2D8D85E70>, took 21ms
    2023-01-16 22:18:21,975 - INFO - [MainThread] cura.CuraApplication._removeNodesWithLayerData [2046]: Clearing scene
    2023-01-16 22:18:22,537 - WARNING - [MainThread] UM.Qt.QtApplication.__onQmlWarning [444]: file:///C:/Program Files/Ultimaker Cura 5.2.1/share/cura/resources/qml/ObjectSelector.qml:134:17: Unable to assign [undefined] to int
    2023-01-16 22:18:22,539 - WARNING - [MainThread] UM.Qt.QtApplication.__onQmlWarning [444]: file:///C:/Program Files/Ultimaker Cura 5.2.1/share/cura/resources/qml/ObjectSelector.qml:132:17: Unable to assign [undefined] to int
    2023-01-16 22:18:22,540 - WARNING - [MainThread] UM.Qt.QtApplication.__onQmlWarning [444]: file:///C:/Program Files/Ultimaker Cura 5.2.1/share/cura/resources/qml/ObjectSelector.qml:131:17: Unable to assign [undefined] to bool
    2023-01-16 22:18:22,541 - WARNING - [MainThread] UM.Qt.QtApplication.__onQmlWarning [444]: file:///C:/Program Files/Ultimaker Cura 5.2.1/share/cura/resources/qml/ObjectSelector.qml:133:17: Unable to assign [undefined] to QString
    2023-01-16 22:18:22,849 - WARNING - [MainThread] cura.UI.PrintInformation.setBaseName [371]: Unsupported Mime Type Database file extension
    2023-01-16 22:23:57,743 - WARNING - [MainThread] UM.Qt.Bindings.Theme.getColor [120]: No color primary_text_hover defined in Theme
    2023-01-16 22:23:57,861 - DEBUG - [MainThread] cura.OAuth2.AuthorizationService.getAccessToken [145]: No auth data to retrieve the access_token from
    2023-01-16 22:23:57,862 - DEBUG - [MainThread] cura.UltimakerCloud.UltimakerCloudScope.requestHook [30]: User is not logged in for Cloud API request to https://api.ultimaker.com/cura-packages/v1/cura/v8.2.0/packages?limit=20&package_type=plugin
    2023-01-16 22:24:03,433 - DEBUG - [MainThread] cura.OAuth2.AuthorizationService.getAccessToken [145]: No auth data to retrieve the access_token from
    2023-01-16 22:24:03,434 - DEBUG - [MainThread] cura.UltimakerCloud.UltimakerCloudScope.requestHook [30]: User is not logged in for Cloud API request to https://api.ultimaker.com/cura-packages/v1/cura/v8.2.0/packages?limit=20&package_type=material
    2023-01-16 22:24:06,250 - DEBUG - [MainThread] cura.AutoSave._onTimeout [64]: Autosaving preferences, instances and profiles took 0.019967079162597656 seconds
    2023-01-16 22:24:06,883 - DEBUG - [MainThread] cura.OAuth2.AuthorizationService.getAccessToken [145]: No auth data to retrieve the access_token from
    2023-01-16 22:24:06,883 - DEBUG - [MainThread] cura.UltimakerCloud.UltimakerCloudScope.requestHook [30]: User is not logged in for Cloud API request to https://api.ultimaker.com/cura-packages/v1/cura/v8.2.0/packages/package-updates?installed_packages=OBJWriter:1.0.1&installed_packages=VersionUpgrade32to33:1.0.1&installed_packages=STLReader:1.0.1&installed_packages=RotateTool:1.0.1&installed_packages=UFPReader:1.0.0&installed_packages=VersionUpgrade30to31:1.0.1&installed_packages=ThingiBrowser:2.2.1&installed_packages=AMFReader:1.0.0&installed_packages=GCodeWriter:1.0.1&installed_packages=RemovableDriveOutputDevice:1.0.1&installed_packages=USBPrinting:1.0.2&installed_packages=VersionUpgrade22to24:1.0.1&installed_packages=VersionUpgrade41to42:1.0.0&installed_packages=VersionUpgrade34to35:1.0.1&installed_packages=VersionUpgrade26to27:1.0.1&installed_packages=LegacyProfileReader:1.0.1&installed_packages=SimpleView:1.0.1&installed_packages=SolidView:1.0.1&installed_packages=SelectionTool:1.0.1&installed_packages=VersionUpgrade45to46:1.0.0&installed_packages=PostProcessingPlugin:2.2.1&installed_packages=VersionUpgrade27to30:1.0.1&installed_packages=OBJReader:1.0.1&installed_packages=CustomSupportCylinder:2.6.6&installed_packages=3MFReader:1.0.1&installed_packages=VersionUpgrade40to41:1.0.1&installed_packages=VersionUpgrade47to48:1.0.0&installed_packages=CuraProfileReader:1.0.1&installed_packages=VersionUpgrade44to45:1.0.0&installed_packages=VersionUpgrade460to462:1.0.0&installed_packages=ScaleTool:1.0.1&installed_packages=GCodeProfileReader:1.0.1&installed_packages=MachineSettingsAction:1.0.1&installed_packages=VersionUpgrade42to43:1.0.0&installed_packages=SupportEraser:1.0.1&installed_packages=STLWriter:1.0.1&installed_packages=XRayView:1.0.1&installed_packages=GCodeGzReader:1.0.1&installed_packages=3MFWriter:1.0.1&installed_packages=SimulationView:1.0.1&installed_packages=CameraTool:1.0.1&installed_packages=UFPWriter:1.0.1&installed_packages=CalibrationShapes:2.1.5&installed_packages=VersionUpgrade35to40:1.0.0&installed_packages=PrepareStage:1.0.1&installed_packages=VersionUpgrade411to412:1.0.0&installed_packages=LocalFileOutputDevice:1.0.1&installed_packages=MirrorTool:1.0.1&installed_packages=XMLMaterialProfile:1.0.1&installed_packages=TranslateTool:1.0.1&installed_packages=StartOptimiser:3.6.0&installed_packages=GCodeGzWriter:1.0.1&installed_packages=SidebarGUIPlugin:4.5.0&installed_packages=CuraDrive:1.2.0&installed_packages=FirmwareUpdater:1.0.1&installed_packages=VersionUpgrade33to34:1.0.1&installed_packages=VersionUpgrade49to410:1.0.0&installed_packages=SliceInfoPlugin:1.0.1&installed_packages=FileLogger:1.0.1&installed_packages=X3DReader:1.0.1&installed_packages=Marketplace:1.0.0&installed_packages=UpdateChecker:1.0.1&installed_packages=ConsoleLogger:1.0.1&installed_packages=CuraEngineBackend:1.0.1&installed_packages=VersionUpgrade462to47:1.0.0&installed_packages=VersionUpgrade48to49:1.0.0&installed_packages=SentryLogger:1.0.0&installed_packages=ModelChecker:1.0.1&installed_packages=GCodeReader:1.0.1&installed_packages=ImageReader:1.0.1&installed_packages=UM3NetworkPrinting:1.0.1&installed_packages=ArcWelderPlugin:3.5.2&installed_packages=TrimeshReader:1.0.0&installed_packages=PerObjectSettingsTool:1.0.1&installed_packages=FirmwareUpdateChecker:1.0.1&installed_packages=DigitalLibrary:1.1.0&installed_packages=GcodeFilenameFormatPlus:1.0.0&installed_packages=VersionUpgrade21to22:1.0.1&installed_packages=PreviewStage:1.0.1&installed_packages=CuraProfileWriter:1.0.1&installed_packages=PrinterSettingsPlugin:3.5.4&installed_packages=MoonrakerConnection:1.6.5&installed_packages=VersionUpgrade25to26:1.0.1&installed_packages=UltimakerMachineActions:1.0.1&installed_packages=VersionUpgrade43to44:1.0.0&installed_packages=MonitorStage:1.0.1&installed_packages=LocalContainerProvider:1.0.1&installed_packages=GenericCFFPA:1.4.0&installed_packages=UltimakerNylon:1.4.0&installed_packages=UltimakerPLA:1.4.0&installed_packages=GenericPETG:1.4.0&installed_packages=GenericNylon:1.4.0&installed_packages=PolyPlusPLA:1.0.1&installed_packages=PolyWoodPLA:1.0.1&installed_packages=GenericCPE:1.4.0&installed_packages=PolyMaxPLA:1.0.1&installed_packages=FABtotumABS:1.4.0&installed_packages=GenericABS:1.4.0&installed_packages=GenericPC:1.4.0&installed_packages=Filo3DPLA:1.0.1&installed_packages=VertexDeltaPLA:1.4.0&installed_packages=GenericToughPLA:1.4.0&installed_packages=OctofiberPLA:1.0.1&installed_packages=UltimakerTPLA:1.4.0&installed_packages=PolyFlexPLA:1.0.1&installed_packages=GenericCPEPlus:1.4.0&installed_packages=GenericGFFPA:1.4.0&installed_packages=FABtotumTPU:1.4.0&installed_packages=UltimakerCPE:1.4.0&installed_packages=UltimakerBAM:1.4.0&installed_packages=IMADE3DJellyBOXPETG:1.0.1&installed_packages=UltimakerPVA:1.4.0&installed_packages=GenericTPU:1.4.0&installed_packages=FiberlogyHDPLA:1.0.1&installed_packages=UltimakerCPEP:1.4.0&installed_packages=UltimakerPC:1.4.0&installed_packages=UltimakerTPU:1.4.0&installed_packages=GenericBAM:1.4.0&installed_packages=UltimakerPP:1.4.0&installed_packages=VertexDeltaABS:1.4.0&installed_packages=GenericPVA:1.4.0&installed_packages=GenericPP:1.4.0&installed_packages=GenericPLA:1.4.0&installed_packages=GenericCFFCPE:1.4.0&installed_packages=VertexDeltaPET:1.4.0&installed_packages=DagomaChromatikPLA:1.0.1&installed_packages=FABtotumPLA:1.4.0&installed_packages=IMADE3DJellyBOXPLA:1.0.1&installed_packages=UltimakerABS:1.4.0&installed_packages=GenericHIPS:1.4.0&installed_packages=VertexDeltaTPU:1.4.0&installed_packages=GenericGFFCPE:1.4.0&installed_packages=FABtotumNylon:1.4.0
    2023-01-16 22:24:19,750 - DEBUG - [MainThread] cura.OAuth2.AuthorizationService.getAccessToken [145]: No auth data to retrieve the access_token from
    2023-01-16 22:24:19,751 - DEBUG - [MainThread] cura.UltimakerCloud.UltimakerCloudScope.requestHook [30]: User is not logged in for Cloud API request to https://api.ultimaker.com/cura-packages/v1/cura/v8.2.0/packages?limit=20&package_type=plugin&page=2
    2023-01-16 22:24:21,847 - DEBUG - [MainThread] cura.OAuth2.AuthorizationService.getAccessToken [145]: No auth data to retrieve the access_token from
    2023-01-16 22:24:21,848 - DEBUG - [MainThread] cura.UltimakerCloud.UltimakerCloudScope.requestHook [30]: User is not logged in for Cloud API request to https://api.ultimaker.com/cura-packages/v1/cura/v8.2.0/packages?limit=20&package_type=plugin&search=m
    2023-01-16 22:24:22,491 - DEBUG - [MainThread] cura.OAuth2.AuthorizationService.getAccessToken [145]: No auth data to retrieve the access_token from
    2023-01-16 22:24:22,493 - DEBUG - [MainThread] cura.UltimakerCloud.UltimakerCloudScope.requestHook [30]: User is not logged in for Cloud API request to https://api.ultimaker.com/cura-packages/v1/cura/v8.2.0/packages?limit=20&package_type=plugin&search=mesh
    2023-01-16 22:24:42,987 - DEBUG - [MainThread] cura.AutoSave._onTimeout [64]: Autosaving preferences, instances and profiles took 0.04003405570983887 seconds
    2023-01-16 22:25:53,390 - INFO - [MainThread] cura.CuraApplication.readLocalFile [1774]: Attempting to read file file:///D:/Projects/SolidWorks/separator_x3/SeparateV8_33cm_blocker.3MF
    2023-01-16 22:25:55,130 - DEBUG - [JobQueueWorker [5]] UM.Mesh.MeshData.calculateNormalsFromVertices [561]: Calculating normals took 0.0 seconds
    2023-01-16 22:25:55,139 - DEBUG - [JobQueueWorker [5]] UM.Mesh.MeshData.calculateNormalsFromVertices [561]: Calculating normals took 0.0004992485046386719 seconds
    2023-01-16 22:25:55,579 - DEBUG - [MainThread] cura.Machines.MachineErrorChecker._rescheduleCheck [164]: New error check scheduled.
    2023-01-16 22:25:55,659 - DEBUG - [JobQueueWorker [5]] UM.Mesh.MeshData.calculateNormalsFromVertices [561]: Calculating normals took 0.18020868301391602 seconds
    2023-01-16 22:25:55,711 - WARNING - [JobQueueWorker [5]] UM.Scene.SceneNode.addDecorator [234]: Unable to add the same decorator type (<class 'cura.Scene.SliceableObjectDecorator.SliceableObjectDecorator'>) to a SceneNode twice.
    2023-01-16 22:25:55,722 - DEBUG - [JobQueueWorker [5]] UM.Mesh.MeshData.calculateNormalsFromVertices [561]: Calculating normals took 0.0 seconds
    2023-01-16 22:25:55,734 - DEBUG - [JobQueueWorker [5]] UM.Mesh.MeshData.calculateNormalsFromVertices [561]: Calculating normals took 0.002995729446411133 seconds
    2023-01-16 22:25:55,759 - DEBUG - [JobQueueWorker [5]] UM.Mesh.MeshData.calculateNormalsFromVertices [561]: Calculating normals took 0.0004990100860595703 seconds
    2023-01-16 22:25:56,835 - DEBUG - [MainThread] cura.Machines.Models.IntentSelectionModel._update [91]: Updating IntentSelectionModel.
    2023-01-16 22:25:56,837 - DEBUG - [MainThread] cura.Machines.Models.IntentSelectionModel._update [91]: Updating IntentSelectionModel.
    2023-01-16 22:25:56,841 - DEBUG - [MainThread] cura.Machines.Models.IntentSelectionModel._update [91]: Updating IntentSelectionModel.
    2023-01-16 22:25:57,147 - DEBUG - [MainThread] cura.Machines.Models.CustomQualityProfilesDropDownMenuModel._update [33]: Updating CustomQualityProfilesDropDownMenuModel.
    2023-01-16 22:25:58,037 - DEBUG - [MainThread] cura.Machines.Models.IntentSelectionModel._update [91]: Updating IntentSelectionModel.
    2023-01-16 22:25:58,038 - DEBUG - [MainThread] cura.Machines.Models.IntentSelectionModel._update [91]: Updating IntentSelectionModel.
    2023-01-16 22:25:58,042 - DEBUG - [MainThread] cura.Machines.Models.IntentSelectionModel._update [91]: Updating IntentSelectionModel.
    2023-01-16 22:25:58,132 - DEBUG - [JobQueueWorker [5]] UM.Mesh.MeshData.approximateConvexHull [505]: approximateConvexHull(target_count=1024) Calculating 3D convex hull took 2.3227431774139404 seconds. 24959 input vertices. 24959 output vertices.
    2023-01-16 22:25:58,283 - DEBUG - [MainThread] cura.Machines.MachineErrorChecker._checkStack [168]: Need to check for errors again. Discard the current progress and reschedule a check.
    2023-01-16 22:25:58,379 - DEBUG - [MainThread] cura.Machines.Models.CustomQualityProfilesDropDownMenuModel._update [33]: Updating CustomQualityProfilesDropDownMenuModel.
    2023-01-16 22:25:58,406 - DEBUG - [MainThread] cura.Machines.MachineErrorChecker._rescheduleCheck [164]: New error check scheduled.
    2023-01-16 22:25:58,893 - DEBUG - [JobQueueWorker [5]] UM.FileHandler.ReadFileJob.run [83]: Loading file took 5.5 seconds
    2023-01-16 22:25:59,746 - INFO - [MainThread] cura.Machines.MachineErrorChecker._setResult [221]: Error check finished, result = False, time = 1.34s
    2023-01-16 22:26:01,125 - DEBUG - [JobQueueWorker [5]] UM.Mesh.MeshData.approximateConvexHull [505]: approximateConvexHull(target_count=1024) Calculating 3D convex hull took 2.2308921813964844 seconds. 24946 input vertices. 24946 output vertices.
    2023-01-16 22:26:01,208 - DEBUG - [JobQueueWorker [5]] UM.Mesh.MeshData.approximateConvexHull [505]: approximateConvexHull(target_count=1024) Calculating 3D convex hull took 0.07787561416625977 seconds. 835 input vertices. 835 output vertices.
    2023-01-16 22:26:01,265 - DEBUG - [JobQueueWorker [5]] UM.Mesh.MeshData.approximateConvexHull [505]: approximateConvexHull(target_count=1024) Calculating 3D convex hull took 0.05590987205505371 seconds. 720 input vertices. 720 output vertices.
    2023-01-16 22:26:01,523 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: <UM.Operations.AddSceneNodeOperation.AddSceneNodeOperation object at 0x000001C2972EF010>, took 246ms
    2023-01-16 22:26:01,602 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=0), took 0ms
    2023-01-16 22:26:06,979 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: TranslateOp.(node=<CuraSceneNode object: 'SeparateV8_33cm_blocker.3MF'>,trans.=<199.229,1.000,174.000>), took 207ms
    2023-01-16 22:26:08,337 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: TranslateOp.(node=<CuraSceneNode object: 'SeparateV8_33cm_blocker.3MF'>,trans.=<199.229,1.000,-616.943>), took 244ms
    2023-01-16 22:26:10,227 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: TranslateOp.(node=<CuraSceneNode object: 'SeparateV8_33cm_blocker.3MF'>,trans.=<199.229,-70.302,-616.943>), took 206ms
    2023-01-16 22:26:12,074 - DEBUG - [MainThread] cura.AutoSave._onTimeout [64]: Autosaving preferences, instances and profiles took 0.04246211051940918 seconds
    2023-01-16 22:26:13,610 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=2) SetParentOperation(node = <CuraSceneNode object: 'body131471'>, parent_node=<SceneNode object: 'Root'>) SetParentOperation(node = <CuraSceneNode object: 'Blocker Top Border^SeparateV8_33cm_blocker(Standard)Anzeigestatus 1'>, parent_node=<SceneNode object: 'Root'>), took 481ms
    2023-01-16 22:26:25,103 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=2) SetParentOperation(node = <CuraSceneNode object: 'body259049'>, parent_node=<SceneNode object: 'Root'>) SetParentOperation(node = <CuraSceneNode object: 'body315035'>, parent_node=<SceneNode object: 'Root'>), took 283ms
    2023-01-16 22:26:31,697 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:26:32,516 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:26:32,538 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:26:32,555 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:26:32,568 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:26:32,581 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:26:32,595 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:26:32,607 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:26:32,619 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:26:32,632 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:26:32,648 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    ....
    2023-01-16 22:26:38,896 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:26:39,194 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:26:41,846 - DEBUG - [MainThread] cura.AutoSave._onTimeout [64]: Autosaving preferences, instances and profiles took 0.012480020523071289 seconds
    2023-01-16 22:30:15,381 - INFO - [MainThread] cura.CuraApplication.reloadAll [1471]: Reloading all loaded mesh data.
    2023-01-16 22:30:15,382 - WARNING - [MainThread] cura.CuraApplication.reloadAll [1507]: Unable to reload data because we don't have a filename.
    2023-01-16 22:30:15,383 - WARNING - [MainThread] cura.CuraApplication.reloadAll [1507]: Unable to reload data because we don't have a filename.
    2023-01-16 22:30:15,384 - WARNING - [MainThread] cura.CuraApplication.reloadAll [1507]: Unable to reload data because we don't have a filename.
    2023-01-16 22:30:17,346 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:30:20,574 - WARNING - [MainThread] UM.Qt.QtApplication.__onQmlWarning [444]: file:///C:/Users/me/AppData/Roaming/cura/5.2/plugins/SidebarGUIPlugin/SidebarGUIPlugin/resources/qml/ProfileSelector51.qml:135: ReferenceError: intent is not defined
    2023-01-16 22:30:21,631 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:30:22,721 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh

    ...

    2023-01-16 22:30:26,478 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:30:26,900 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:30:27,224 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:30:29,523 - INFO - [MainThread] UM.Controller.deleteAllNodesWithMeshData [468]: Clearing scene
    2023-01-16 22:30:29,744 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=3) <UM.Operations.RemoveSceneNodeOperation.RemoveSceneNodeOperation object at 0x000001C2DCC74E80> <UM.Operations.RemoveSceneNodeOperation.RemoveSceneNodeOperation object at 0x000001C2972CE1D0> <UM.Operations.RemoveSceneNodeOperation.RemoveSceneNodeOperation object at 0x000001C2972CF010>, took 89ms
    2023-01-16 22:30:29,746 - INFO - [MainThread] cura.CuraApplication._removeNodesWithLayerData [2046]: Clearing scene
    2023-01-16 22:30:29,751 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:30:29,860 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:30:30,233 - WARNING - [MainThread] UM.Qt.QtApplication.__onQmlWarning [444]: file:///C:/Program Files/Ultimaker Cura 5.2.1/share/cura/resources/qml/ObjectSelector.qml:134:17: Unable to assign [undefined] to int
    2023-01-16 22:30:30,235 - WARNING - [MainThread] UM.Qt.QtApplication.__onQmlWarning [444]: file:///C:/Program Files/Ultimaker Cura 5.2.1/share/cura/resources/qml/ObjectSelector.qml:132:17: Unable to assign [undefined] to int
    2023-01-16 22:30:30,237 - WARNING - [MainThread] UM.Qt.QtApplication.__onQmlWarning [444]: file:///C:/Program Files/Ultimaker Cura 5.2.1/share/cura/resources/qml/ObjectSelector.qml:131:17: Unable to assign [undefined] to bool
    2023-01-16 22:30:30,239 - WARNING - [MainThread] UM.Qt.QtApplication.__onQmlWarning [444]: file:///C:/Program Files/Ultimaker Cura 5.2.1/share/cura/resources/qml/ObjectSelector.qml:133:17: Unable to assign [undefined] to QString
    2023-01-16 22:30:30,242 - WARNING - [MainThread] UM.Qt.QtApplication.__onQmlWarning [444]: file:///C:/Program Files/Ultimaker Cura 5.2.1/share/cura/resources/qml/ObjectSelector.qml:134:17: Unable to assign [undefined] to int
    2023-01-16 22:30:30,244 - WARNING - [MainThread] UM.Qt.QtApplication.__onQmlWarning [444]: file:///C:/Program Files/Ultimaker Cura 5.2.1/share/cura/resources/qml/ObjectSelector.qml:132:17: Unable to assign [undefined] to int
    2023-01-16 22:30:30,246 - WARNING - [MainThread] UM.Qt.QtApplication.__onQmlWarning [444]: file:///C:/Program Files/Ultimaker Cura 5.2.1/share/cura/resources/qml/ObjectSelector.qml:131:17: Unable to assign [undefined] to bool
    2023-01-16 22:30:30,247 - WARNING - [MainThread] UM.Qt.QtApplication.__onQmlWarning [444]: file:///C:/Program Files/Ultimaker Cura 5.2.1/share/cura/resources/qml/ObjectSelector.qml:133:17: Unable to assign [undefined] to QString
    2023-01-16 22:30:30,249 - WARNING - [MainThread] UM.Qt.QtApplication.__onQmlWarning [444]: file:///C:/Program Files/Ultimaker Cura 5.2.1/share/cura/resources/qml/ObjectSelector.qml:134:17: Unable to assign [undefined] to int
    2023-01-16 22:30:30,251 - WARNING - [MainThread] UM.Qt.QtApplication.__onQmlWarning [444]: file:///C:/Program Files/Ultimaker Cura 5.2.1/share/cura/resources/qml/ObjectSelector.qml:132:17: Unable to assign [undefined] to int
    2023-01-16 22:30:30,253 - WARNING - [MainThread] UM.Qt.QtApplication.__onQmlWarning [444]: file:///C:/Program Files/Ultimaker Cura 5.2.1/share/cura/resources/qml/ObjectSelector.qml:131:17: Unable to assign [undefined] to bool
    2023-01-16 22:30:30,255 - WARNING - [MainThread] UM.Qt.QtApplication.__onQmlWarning [444]: file:///C:/Program Files/Ultimaker Cura 5.2.1/share/cura/resources/qml/ObjectSelector.qml:133:17: Unable to assign [undefined] to QString
    2023-01-16 22:30:30,527 - WARNING - [MainThread] cura.UI.PrintInformation.setBaseName [371]: Unsupported Mime Type Database file extension
    2023-01-16 22:30:31,689 - DEBUG - [MainThread] cura.AutoSave._onTimeout [64]: Autosaving preferences, instances and profiles took 0.03457236289978027 seconds
    2023-01-16 22:30:33,055 - INFO - [MainThread] cura.CuraApplication.readLocalFile [1774]: Attempting to read file file:///D:/Projects/SolidWorks/separator_x3/SeparateV8_33cm_blocker.3MF
    2023-01-16 22:30:34,945 - DEBUG - [JobQueueWorker [6]] UM.Mesh.MeshData.calculateNormalsFromVertices [561]: Calculating normals took 0.0 seconds
    2023-01-16 22:30:34,960 - DEBUG - [JobQueueWorker [6]] UM.Mesh.MeshData.calculateNormalsFromVertices [561]: Calculating normals took 0.0004992485046386719 seconds
    2023-01-16 22:30:35,477 - DEBUG - [JobQueueWorker [6]] UM.Mesh.MeshData.calculateNormalsFromVertices [561]: Calculating normals took 0.1667311191558838 seconds
    2023-01-16 22:30:35,527 - WARNING - [JobQueueWorker [6]] UM.Scene.SceneNode.addDecorator [234]: Unable to add the same decorator type (<class 'cura.Scene.SliceableObjectDecorator.SliceableObjectDecorator'>) to a SceneNode twice.
    2023-01-16 22:30:35,532 - DEBUG - [JobQueueWorker [6]] UM.Mesh.MeshData.calculateNormalsFromVertices [561]: Calculating normals took 0.0 seconds
    2023-01-16 22:30:35,537 - DEBUG - [JobQueueWorker [6]] UM.Mesh.MeshData.calculateNormalsFromVertices [561]: Calculating normals took 0.0009989738464355469 seconds
    2023-01-16 22:30:35,542 - DEBUG - [JobQueueWorker [6]] UM.Mesh.MeshData.calculateNormalsFromVertices [561]: Calculating normals took 0.0004992485046386719 seconds
    2023-01-16 22:30:36,118 - DEBUG - [MainThread] cura.Machines.MachineErrorChecker._rescheduleCheck [164]: New error check scheduled.
    2023-01-16 22:30:36,672 - DEBUG - [MainThread] cura.Machines.Models.IntentSelectionModel._update [91]: Updating IntentSelectionModel.
    2023-01-16 22:30:36,673 - DEBUG - [MainThread] cura.Machines.Models.IntentSelectionModel._update [91]: Updating IntentSelectionModel.
    2023-01-16 22:30:36,677 - DEBUG - [MainThread] cura.Machines.Models.IntentSelectionModel._update [91]: Updating IntentSelectionModel.
    2023-01-16 22:30:36,952 - DEBUG - [MainThread] cura.Machines.MachineErrorChecker._checkStack [168]: Need to check for errors again. Discard the current progress and reschedule a check.
    2023-01-16 22:30:36,999 - DEBUG - [MainThread] cura.Machines.Models.CustomQualityProfilesDropDownMenuModel._update [33]: Updating CustomQualityProfilesDropDownMenuModel.
    2023-01-16 22:30:37,841 - DEBUG - [JobQueueWorker [6]] UM.Mesh.MeshData.approximateConvexHull [505]: approximateConvexHull(target_count=1024) Calculating 3D convex hull took 2.284806251525879 seconds. 24959 input vertices. 24959 output vertices.
    2023-01-16 22:30:37,933 - DEBUG - [MainThread] cura.Machines.MachineErrorChecker._rescheduleCheck [164]: New error check scheduled.
    2023-01-16 22:30:38,568 - DEBUG - [JobQueueWorker [6]] UM.FileHandler.ReadFileJob.run [83]: Loading file took 5.5 seconds
    2023-01-16 22:30:38,598 - DEBUG - [MainThread] cura.Machines.Models.IntentSelectionModel._update [91]: Updating IntentSelectionModel.
    2023-01-16 22:30:38,601 - DEBUG - [MainThread] cura.Machines.Models.IntentSelectionModel._update [91]: Updating IntentSelectionModel.
    2023-01-16 22:30:38,605 - DEBUG - [MainThread] cura.Machines.Models.IntentSelectionModel._update [91]: Updating IntentSelectionModel.
    2023-01-16 22:30:38,895 - DEBUG - [MainThread] cura.Machines.Models.CustomQualityProfilesDropDownMenuModel._update [33]: Updating CustomQualityProfilesDropDownMenuModel.
    2023-01-16 22:30:39,529 - INFO - [MainThread] cura.Machines.MachineErrorChecker._setResult [221]: Error check finished, result = False, time = 1.60s
    2023-01-16 22:30:40,823 - DEBUG - [JobQueueWorker [6]] UM.Mesh.MeshData.approximateConvexHull [505]: approximateConvexHull(target_count=1024) Calculating 3D convex hull took 2.2533557415008545 seconds. 24946 input vertices. 24946 output vertices.
    2023-01-16 22:30:40,913 - DEBUG - [JobQueueWorker [6]] UM.Mesh.MeshData.approximateConvexHull [505]: approximateConvexHull(target_count=1024) Calculating 3D convex hull took 0.08436346054077148 seconds. 835 input vertices. 835 output vertices.
    2023-01-16 22:30:40,945 - DEBUG - [JobQueueWorker [6]] UM.Mesh.MeshData.approximateConvexHull [505]: approximateConvexHull(target_count=1024) Calculating 3D convex hull took 0.02945256233215332 seconds. 448 input vertices. 448 output vertices.
    2023-01-16 22:30:41,241 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: <UM.Operations.AddSceneNodeOperation.AddSceneNodeOperation object at 0x000001C2F3D01E10>, took 283ms
    2023-01-16 22:30:41,345 - WARNING - [MainThread] UM.Qt.QtApplication.__onQmlWarning [444]: file:///C:/Program Files/Ultimaker Cura 5.2.1/share/cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:230:25: Unable to assign [undefined] to qulonglong
    2023-01-16 22:30:41,365 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=0), took 0ms
    2023-01-16 22:30:47,014 - DEBUG - [MainThread] cura.AutoSave._onTimeout [64]: Autosaving preferences, instances and profiles took 0.048918724060058594 seconds
    2023-01-16 22:30:48,238 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: TranslateOp.(node=<CuraSceneNode object: 'SeparateV8_33cm_blocker.3MF'>,trans.=<199.229,1.000,174.000>), took 217ms
    2023-01-16 22:30:49,449 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: TranslateOp.(node=<CuraSceneNode object: 'SeparateV8_33cm_blocker.3MF'>,trans.=<199.229,1.000,-616.943>), took 218ms
    2023-01-16 22:30:51,146 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: TranslateOp.(node=<CuraSceneNode object: 'SeparateV8_33cm_blocker.3MF'>,trans.=<199.229,-70.302,-616.943>), took 221ms
    2023-01-16 22:30:55,373 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=2) SetParentOperation(node = <CuraSceneNode object: 'body131471'>, parent_node=<SceneNode object: 'Root'>) SetParentOperation(node = <CuraSceneNode object: 'Blocker Top Border^SeparateV8_33cm_blocker(Standard)Anzeigestatus 1'>, parent_node=<SceneNode object: 'Root'>), took 526ms
    2023-01-16 22:30:58,105 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=2) SetParentOperation(node = <CuraSceneNode object: 'body259049'>, parent_node=<SceneNode object: 'Root'>) SetParentOperation(node = <CuraSceneNode object: 'body386024'>, parent_node=<SceneNode object: 'Root'>), took 304ms
    2023-01-16 22:31:02,094 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:31:03,285 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:31:03,592 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:31:04,587 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh

    ...

    2023-01-16 22:31:19,852 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:31:19,853 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:31:19,885 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:31:19,885 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:31:20,598 - INFO - [MainThread] CuraEngineBackend.CuraEngineBackend._createSnapshot [275]: Creating thumbnail image (just before slice)...
    2023-01-16 22:31:20,601 - DEBUG - [MainThread] UM.Scene.Camera._preferencesChanged [252]: Changing perspective mode to orthographic.
    2023-01-16 22:31:20,608 - DEBUG - [MainThread] UM.View.GL.ShaderProgram.load [61]: Loading [C:\Program Files\Ultimaker Cura 5.2.1\share\cura\resources\shaders\overhang.shader]...
    2023-01-16 22:31:20,612 - DEBUG - [MainThread] UM.View.GL.ShaderProgram.load [61]: Loading [C:\Program Files\Ultimaker Cura 5.2.1\share\cura\resources\shaders\transparent_object.shader]...
    2023-01-16 22:31:20,615 - DEBUG - [MainThread] UM.View.GL.ShaderProgram.load [61]: Loading [C:\Program Files\Ultimaker Cura 5.2.1\share\cura\resources\shaders\striped.shader]...
    2023-01-16 22:31:20,791 - INFO - [MainThread] CuraEngineBackend.CuraEngineBackend.slice [290]: Starting to slice...
    2023-01-16 22:31:20,792 - DEBUG - [MainThread] CuraEngineBackend.CuraEngineBackend.slice [309]: Going to slice build plate [0]!
    2023-01-16 22:31:20,845 - DEBUG - [MainThread] UM.Backend.Backend._createSocket [235]: Previous socket existed. Closing that first.
    2023-01-16 22:31:21,146 - WARNING - [JobQueueWorker [7]] CuraEngineBackend.StartSliceJob.get_value [85]: Unable to replace 'filament_weight' placeholder in start/end g-code
    2023-01-16 22:31:21,150 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:31:21,151 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:31:21,156 - DEBUG - [MainThread] UM.Backend.Backend._logSocketState [192]: Socket state changed to Listening
    2023-01-16 22:31:21,162 - INFO - [MainThread] UM.Backend.Backend.startEngine [95]: Started engine process: C:\Program Files\Ultimaker Cura 5.2.1\CuraEngine.exe
    2023-01-16 22:31:21,164 - DEBUG - [MainThread] UM.Backend.Backend._backendLog [115]: [Backend] Calling engine with: ['C:\\Program Files\\Ultimaker Cura 5.2.1\\CuraEngine.exe', 'connect', '127.0.0.1:49674', '']
    2023-01-16 22:31:21,238 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:31:21.214] [info] Connecting to 127.0.0.1:49674
    2023-01-16 22:31:21,272 - DEBUG - [MainThread] UM.Backend.Backend._logSocketState [196]: Socket state changed to Connected
    2023-01-16 22:31:21,292 - DEBUG - [MainThread] UM.Backend.Backend._onSocketStateChanged [185]: Backend connected on port 49674
    2023-01-16 22:31:21,531 - DEBUG - [MainThread] CuraEngineBackend.CuraEngineBackend._onStartSliceCompleted [516]: Sending slice message took 0.7383062839508057 seconds
    2023-01-16 22:31:23,099 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:31:23.099] [warning] Mesh has overlapping faces!
    2023-01-16 22:31:23,788 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:31:23.787] [info] Progress: start accomplished in   0s
    2023-01-16 22:31:23,790 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:31:23.787] [info] Starting slice...
    2023-01-16 22:31:23,792 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:31:23.787] [info] Slicing model...
    2023-01-16 22:31:25,013 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:31:25.012] [info] Slice of mesh took 1.235000000000582 seconds
    2023-01-16 22:31:25,676 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:31:25.676] [info] Make polygons took 0.6560000000026776 seconds
    2023-01-16 22:31:25,745 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:31:25.745] [info] Slice of mesh took 0.07799999999406282 seconds
    2023-01-16 22:31:25,772 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:31:25.772] [info] Make polygons took 0.01600000000325963 seconds
    2023-01-16 22:31:25,777 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:31:25.777] [info] Slice of mesh took 0.014999999999417923 seconds
    2023-01-16 22:31:25,784 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:31:25.784] [info] Make polygons took   0 seconds
    2023-01-16 22:31:25,814 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:31:25.814] [info] Progress: slice accomplished in 2.0319999999919673s
    2023-01-16 22:31:25,815 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:31:25.814] [info] Starting layerparts...
    2023-01-16 22:31:28,478 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:31:28.477] [info] Progress: layerparts accomplished in 2.672000000005937s
    2023-01-16 22:31:28,479 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:31:28.477] [info] Starting inset+skin...
    2023-01-16 22:31:33,145 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:31:33,146 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:31:33,297 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:31:33,299 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    ...

    2023-01-16 22:31:39,698 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:31:39,700 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:31:46,822 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:31:46.822] [info] Layer count: 1898
    2023-01-16 22:31:46,823 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:31:46.822] [info] Progress: inset+skin accomplished in 18.34299999999348s
    2023-01-16 22:31:46,823 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:31:46.822] [info] Starting support...
    2023-01-16 22:41:40,696 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:41:40,696 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    ...
    2023-01-16 22:47:31,417 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:31,421 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:47:31.421] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 22:47:31,434 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    ...
    2023-01-16 22:47:31,575 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:31,617 - DEBUG - [EngineOutputThread] UM.Backend.Backend._backendLog [115]: [Backend] [2023-01-16 22:47:31.616] [warning] Failing to discretize parabola! Must add an apex or one of the endpoints.
    2023-01-16 22:47:31,626 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:31,627 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    ...
    2023-01-16 22:47:41,956 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:41,957 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:43,197 - WARNING - [MainThread] UM.Qt.QtApplication.__onQmlWarning [444]: file:///C:/Program Files/Ultimaker Cura 5.2.1/share/cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:230:25: Unable to assign [undefined] to qulonglong
    2023-01-16 22:47:43,222 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:43,223 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:44,102 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:44,103 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:44,128 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:44,129 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:44,497 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:44,498 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,152 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-0.002,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-0.002,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-0.002,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-0.002,0.000>), took 21ms
    2023-01-16 22:47:45,157 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,158 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,187 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-0.002,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-0.002,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-0.002,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-0.002,0.000>), took 18ms
    2023-01-16 22:47:45,190 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,191 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,222 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-0.837,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-0.837,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-0.837,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-0.837,0.000>), took 21ms
    2023-01-16 22:47:45,226 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,227 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,255 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-1.950,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-1.950,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-1.950,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-1.950,0.000>), took 16ms
    2023-01-16 22:47:45,258 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,259 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,299 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-2.786,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-2.786,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-2.786,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-2.786,0.000>), took 27ms
    2023-01-16 22:47:45,303 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,304 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,334 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-3.622,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-3.622,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-3.622,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-3.622,0.000>), took 20ms
    2023-01-16 22:47:45,337 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,338 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,367 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-5.011,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-5.011,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-5.011,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-5.011,0.000>), took 19ms
    2023-01-16 22:47:45,371 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,371 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,405 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-4.172,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-4.172,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-4.172,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-4.172,0.000>), took 23ms
    2023-01-16 22:47:45,412 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,414 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,448 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-3.895,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-3.895,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-3.895,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-3.895,0.000>), took 23ms
    2023-01-16 22:47:45,451 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,452 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,482 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-4.449,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-4.449,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-4.449,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-4.449,0.000>), took 20ms
    2023-01-16 22:47:45,486 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,486 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,518 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-2.222,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-2.222,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-2.222,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-2.222,0.000>), took 23ms
    2023-01-16 22:47:45,525 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,527 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,557 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-1.949,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-1.949,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-1.949,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-1.949,0.000>), took 21ms
    2023-01-16 22:47:45,577 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-0.557,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-0.557,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-0.557,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-0.557,0.000>), took 17ms
    2023-01-16 22:47:45,580 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,581 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,610 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-5.850,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-5.850,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-5.850,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-5.850,0.000>), took 20ms
    2023-01-16 22:47:45,614 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,615 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,646 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-4.179,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-4.179,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-4.179,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-4.179,0.000>), took 22ms
    2023-01-16 22:47:45,650 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,651 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,683 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-3.900,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-3.900,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-3.900,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-3.900,0.000>), took 21ms
    2023-01-16 22:47:45,686 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,687 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,716 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-5.015,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-5.015,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-5.015,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-5.015,0.000>), took 19ms
    2023-01-16 22:47:45,719 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,720 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,751 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-3.063,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-3.063,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-3.063,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-3.063,0.000>), took 22ms
    2023-01-16 22:47:45,756 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,757 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,785 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-1.948,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-1.948,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-1.948,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-1.948,0.000>), took 18ms
    2023-01-16 22:47:45,789 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,790 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,819 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-2.786,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-2.786,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-2.786,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-2.786,0.000>), took 18ms
    2023-01-16 22:47:45,841 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-0.557,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-0.557,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-0.557,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-0.557,0.000>), took 18ms
    2023-01-16 22:47:45,845 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,846 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,873 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-3.064,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-3.064,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-3.064,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-3.064,0.000>), took 17ms
    2023-01-16 22:47:45,878 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,879 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,912 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-1.672,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-1.672,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-1.672,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-1.672,0.000>), took 23ms
    2023-01-16 22:47:45,915 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,916 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,949 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-0.836,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-0.836,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-0.836,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-0.836,0.000>), took 22ms
    2023-01-16 22:47:45,955 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,956 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,988 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-0.557,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-0.557,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-0.557,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-0.557,0.000>), took 22ms
    2023-01-16 22:47:45,993 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:45,994 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:46,024 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-0.557,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-0.557,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-0.557,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-0.557,0.000>), took 20ms
    2023-01-16 22:47:46,027 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:46,028 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:46,069 - DEBUG - [MainThread] UM.Operations.OperationStack.push [72]: GroupedOp.(#=4) TranslateOp.(node=<CuraSceneNode object: 'body131471'>,trans.=<0.000,-0.279,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body386024'>,trans.=<0.000,-0.279,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body691307'>,trans.=<0.000,-0.279,0.000>) TranslateOp.(node=<CuraSceneNode object: 'body259049'>,trans.=<0.000,-0.279,0.000>), took 22ms
    2023-01-16 22:47:46,075 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    2023-01-16 22:47:46,075 - WARNING - [MainThread] UM.View.RenderBatch.addItem [166]: Tried to add an item to batch without mesh
    ...
    and so on..

    cura_loop_stuck.log

  13. einen Support-Blocker auf das Druckbett legen ist eine lustige Idee, danke!
    allerdings klappt das bei mir nicht, weil in dem Bereich serwohl Support für einen anderen Bereich auf der Druckplatte beginnt
    ich habe es auch eben versucht und der Support-Blocker auf dem Druckbett hat keine Auswirkung

  14. hi, gibt es einen Weg Cura dazu zu bringen das Support-Material am Objekt zu beginnen statt 15cm weiter unten am Druckbett?
    in den früheren Versionen hatte ich es mal geschafft, dass der Support einfach an der Wand anfängt..
    nun habe ich dem Modell schon eine kleine Kante gegeben und möchte dass das Support-Material dort beginnt

     

    image.thumb.png.fe834ee873c50bac35ec2254759aaea5.png

  15. sure, you just can use:

    M190 S{material_bed_temperature-10}

     

    if this is not working use M190 S{(material_bed_temperature-10)} at lease this was working

    just be aware: if you use M190 to heat to a lower temp first (f.e to prevent a hot nozzle waiting for a hot bed) it takes a bit longer in total because the last 3-4° don't get heaten on 100%..

  16. I accept it's a feature, anyway my qustion was how to turn if off

    15 minutes ago, ahoeben said:

    But the slice with no top & bottom shows you exactly why you need those "top & bottom" layers in the first place. Without them, you get holes. I think the figures by @GregValiant are pretty clear about why.

    with my settings of layer-width and height I don't get holes
    as my walls bevome better without this extra scin-infill I think this is no part to discuss about, my model was nothing but a sample..
     

    37 minutes ago, GregValiant said:

    Add a support blocker at the top and one at the bottom with both being 0.9 thick and with both configured for Top/Bottom thickness of .9, 0 Walls and 0 Wall thickness.  The top of the upper support blocker will be flush with the top of the model.

    I'll give the support blocker a try, just I never saw the option to change options for the support-blocker?
    sometimes I'm dreaming of defining different options for a region - but this feature does not exist?

×
×
  • Create New...