Is it possible to get last action comment in variable ?

lokiys

Moderator
Регистрация
01.02.2012
Сообщения
4 812
Благодарностей
1 187
Баллы
113
So is it possible or not ?
My point is that i would like to add some c# after bad end action what will get error action comment and template name.

Cheers
 

rostonix

Известная личность
Регистрация
23.12.2011
Сообщения
29 067
Благодарностей
5 715
Баллы
113
I usually write something like: time, template name and use C# to get last failed action ID.
 

bigcajones

Client
Регистрация
09.02.2011
Сообщения
1 216
Благодарностей
683
Баллы
113
var error = project.GetLastError();
var tmp = "";
if(error != null)
tmp = string.Format("Project Name: {0}.\r\nActionComment: {1}.\r\n", "{-Project.Name-}", error.ActionComment);

return tmp;
 
  • Спасибо
Реакции: lokiys

lokiys

Moderator
Регистрация
01.02.2012
Сообщения
4 812
Благодарностей
1 187
Баллы
113

Кто просматривает тему: (Всего: 1, Пользователи: 0, Гости: 1)