We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec533cd commit b775848Copy full SHA for b775848
api/src/main/java/org/apache/cloudstack/api/command/admin/user/DisableUserCmd.java
@@ -78,12 +78,12 @@ public long getEntityOwnerId() {
78
79
@Override
80
public String getEventDescription() {
81
- return "disabling user: " + getId();
+ return "disabling user: " + this._uuidMgr.getUuid(User.class, getId());
82
}
83
84
85
public void execute() {
86
- CallContext.current().setEventDetails("UserId: " + getId());
+ CallContext.current().setEventDetails("User ID: " + this._uuidMgr.getUuid(User.class, getId()));
87
UserAccount user = _regionService.disableUser(this);
88
89
if (user != null) {
0 commit comments