Commit fbd1729c authored by Pieter Hintjens's avatar Pieter Hintjens

Removed tracing for Travis builds

parent c7c865da
...@@ -81,8 +81,6 @@ int zmq::router_t::xsetsockopt (int option_, const void *optval_, ...@@ -81,8 +81,6 @@ int zmq::router_t::xsetsockopt (int option_, const void *optval_,
} }
return 0; return 0;
} }
// DEBUGGING PROBLEM WITH TRAVIS CI
printf ("E: invalid option value (int=%d value=%d)\n", is_int, value);
break; break;
case ZMQ_ROUTER_MANDATORY: case ZMQ_ROUTER_MANDATORY:
...@@ -90,15 +88,11 @@ int zmq::router_t::xsetsockopt (int option_, const void *optval_, ...@@ -90,15 +88,11 @@ int zmq::router_t::xsetsockopt (int option_, const void *optval_,
mandatory = value; mandatory = value;
return 0; return 0;
} }
// DEBUGGING PROBLEM WITH TRAVIS CI
printf ("E: invalid option value (int=%d value=%d)\n", is_int, value);
break; break;
default: default:
break; break;
} }
// DEBUGGING PROBLEM WITH TRAVIS CI
printf ("E: invalid option (option=%d)\n", option_);
errno = EINVAL; errno = EINVAL;
return -1; return -1;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment