tm = localtime_r(&t, &result);
if (!tm) {
- LOGE(ERROR, "Failed to call localtime_r");
+ LOGED(ERROR, domid, "Failed to call localtime_r");
ret = ERROR_FAIL;
goto out;
}
libxl_defbool_val(d_config->b_info.u.pv.e820_host)) {
ret = libxl__e820_alloc(gc, domid, d_config);
if (ret) {
- LOGE(ERROR, "Failed while collecting E820 with: %d (errno:%d)\n",
+ LOGED(ERROR, domid, "Failed while collecting E820 with: %d (errno:%d)\n",
ret, errno);
}
}
e820_entries++;
if (e820_entries >= E820MAX) {
- LOG(ERROR, "Ooops! Too many entries in the memory map!");
+ LOGD(ERROR, domid, "Ooops! Too many entries in the memory map!");
rc = ERROR_INVAL;
goto out;
}