RH started crashing after 10 minutes
Howdy,
3D Printing Nube here
I recently got a Printrbot simple metal and after setting things up it worked fairly well on my laptop. I moved the printer to near my desktop running Linux and all was well still. I printed several hour long objects. Then I upgraded the comnputer to OpenSuse 13.2 so I could have some later software that I wanted/needed. I reinstalled RH and configured it (the same I believe). Now I can only print for about 10 minutes before the app crashes and disappears from the display.
I am new enough to this printing that I do not know where to look for clues to the crash. I can't find anything in the system logs for any kind of error and I can't find any RH logs. Turning on the screen log will not help as it disappears at the same time the printer stops.
Any help or pointers will be greatly appreciated.
Thanks
Comments
I'm getting the same error, but no stacktrace information:
$ ./repetierHost
Rebuild object False
Rebuild object False
Rebuild object False
Rebuild object False
Rebuild object False
Rebuild object False
Rebuild object False
Rebuild object False
Rebuild object False
Unhandled Exception:
System.NullReferenceException: Object reference not set to an instance of an object
at (wrapper unknown) System.Threading.Monitor:FastMonitorEnterV4 (object,bool&)
at System.Threading.Timer+Scheduler.SchedulerThread () [0x00000] in <filename unknown>:0
at System.Threading.Thread.StartInternal () [0x00000] in <filename unknown>:0
[ERROR] FATAL UNHANDLED EXCEPTION: System.NullReferenceException: Object reference not set to an instance of an object
at (wrapper unknown) System.Threading.Monitor:FastMonitorEnterV4 (object,bool&)
at System.Threading.Timer+Scheduler.SchedulerThread () [0x00000] in <filename unknown>:0
at System.Threading.Thread.StartInternal () [0x00000] in <filename unknown>:0
Ubuntu shows up an error window also, saying that mono crashes. The program was working fine and I've been using it a lot. In my case, it's not a question of time, because sometimes the pieces are finished and sometimes, the same pieces, aren't, showing up that log.
I've checked searching in google, but I didn't see any references just this.
Is there any other log to see if I can trace with more information the error?
Sorry, because I didn't have time to check the documentation to know how to debug an error.
I'm using Ubuntu 14.04, on an AMD (64 bits) running kernel 3.13.0-49-generic.
Thanks in advance.
NullReferenceException indicates that you are trying to access member fields, or function types, on an object reference that points to null. That means the reference to an Object which is not initialized.
It's usually better to avoid a NullReferenceException than to handle it after it occurs. Handling an exception can make your code harder to maintain and understand, and can sometimes introduce other bugs. A NullReferenceException is often a non-recoverable error. In these cases, letting the exception stop the app might be the best alternative. More about.....NullReferenceException
Riyan