forgot about a bit of testing code
diff --git a/bbb_cape/src/bbb/uart_reader.cc b/bbb_cape/src/bbb/uart_reader.cc
index 7b5e116..46c9962 100644
--- a/bbb_cape/src/bbb/uart_reader.cc
+++ b/bbb_cape/src/bbb/uart_reader.cc
@@ -135,7 +135,7 @@
read(fd_, buf_ + already_read, PACKET_SIZE - already_read);
if (new_bytes < 0) {
if (errno == EINTR) continue;
- LOG(FATAL, "read(%d, %p, %zd) failed with %d: %s\n",
+ LOG(ERROR, "read(%d, %p, %zd) failed with %d: %s\n",
fd_, buf_ + already_read, PACKET_SIZE - already_read,
errno, strerror(errno));
return false;