1

Debugging a Python script which is calling pycaffe which in turn is calling Google protobuf.

When I run the script I get the error:

F0304 10:19:58.538651 18829 io.cpp:67] Check failed: proto.SerializeToOstream(&output) 
*** Check failure stack trace: ***

Process finished with exit code 134 (interrupted by signal 6: SIGABRT)

But no failure stack trace. How do I get the stack trace to print?

empty
  • 5,194
  • 3
  • 32
  • 58

1 Answers1

1

You might need to change the value of your environment variable GLOG_minloglevel

export GLOG_minloglevel=2

before running caffe.

Shai
  • 111,146
  • 38
  • 238
  • 371