From 0267659dfc23d0c8f64fa57f8ab3e05b946431d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn?= Date: Wed, 16 Mar 2016 18:44:28 +0100 Subject: [PATCH] Feature #4215: Add missing error message detail See commit:3d8d2fd8 --- src/rm/RequestManagerVirtualMachine.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rm/RequestManagerVirtualMachine.cc b/src/rm/RequestManagerVirtualMachine.cc index a7fb8234c3..5f139717fa 100644 --- a/src/rm/RequestManagerVirtualMachine.cc +++ b/src/rm/RequestManagerVirtualMachine.cc @@ -639,7 +639,7 @@ void VirtualMachineAction::request_execute(xmlrpc_c::paramList const& paramList, break; case -2: oss << "Error performing action \"" << action_st << "\" on " - << object_name(auth_object) << " [" << id << "]"; + << object_name(auth_object) << " [" << id << "]. " << error; att.resp_msg = oss.str(); failure_response(ACTION, att);