srd: Remove manual log domain ("srd: ") prefixes.
diff --git a/exception.c b/exception.c
index 07ffab3..aa7ab61 100644
--- a/exception.c
+++ b/exception.c
@@ -41,8 +41,8 @@
 	PyErr_NormalizeException(&etype, &evalue, &etb);
 
 	if (!(py_str = PyObject_Str(evalue))) {
-		/* Shouldn't happen */
-		srd_dbg("srd: failed to convert exception value to string");
+		/* Shouldn't happen. */
+		srd_dbg("Failed to convert exception value to string.");
 		return;
 	}
 
@@ -74,8 +74,7 @@
 				py_tb->tb_frame->f_code->co_name);
 		py_str_as_str(py_str, &tracestr);
 		Py_DecRef(py_str);
-		g_string_printf(msg, "srd: %s in %s: %s", ename,
-				tracestr, str);
+		g_string_printf(msg, "%s in %s: %s", ename, tracestr, str);
 		srd_dbg(msg->str);
 		g_free(tracestr);
 	}