Commit fecb35b1 authored by Lucas Russo's avatar Lucas Russo

src/dev_io/dev_io_core.c: add build info on DEVIO startup

parent 22005bb5
......@@ -108,6 +108,13 @@ devio_t * devio_new (char *name, uint32_t id, char *endpoint_dev,
endpoint_dev, endpoint_broker, (log_file_name == NULL) ? "NULL" : log_file_name);
free (dev_type_c);
/* Print Software info */
DBE_DEBUG (DBG_DEV_IO | DBG_LVL_INFO, "[dev_io_core] BPM Device I/O version %s"
"Version %s\n, Build by: %s, %s\n",
revision_get_build_version (),
revision_get_build_user_name (),
revision_get_build_date ());
devio_t *self = (devio_t *) zmalloc (sizeof *self);
ASSERT_ALLOC(self, err_self_alloc);
......
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