diff --git a/backend/modules/questionnaire/models/UserQuestionnaireSearch.php b/backend/modules/questionnaire/models/UserQuestionnaireSearch.php
index 5ac1383..7242665 100644
--- a/backend/modules/questionnaire/models/UserQuestionnaireSearch.php
+++ b/backend/modules/questionnaire/models/UserQuestionnaireSearch.php
@@ -4,7 +4,6 @@ namespace backend\modules\questionnaire\models;
use yii\base\Model;
use yii\data\ActiveDataProvider;
-use backend\modules\questionnaire\models\UserQuestionnaire;
/**
* UserQuestionnaireSearch represents the model behind the search form of `backend\modules\questionnaire\models\UserQuestionnaire`.
@@ -18,7 +17,7 @@ class UserQuestionnaireSearch extends UserQuestionnaire
{
return [
[['id', 'questionnaire_id', 'user_id', 'score', 'status'], 'integer'],
- [['uuid', 'created_at', 'updated_at'], 'safe'],
+ [['uuid', 'created_at', 'updated_at', 'testing_date'], 'safe'],
[['percent_correct_answers'], 'number'],
];
}
@@ -67,6 +66,7 @@ class UserQuestionnaireSearch extends UserQuestionnaire
'score' => $this->score,
'status' => $this->status,
'percent_correct_answers' => $this->percent_correct_answers,
+ 'testing_date' => $this->testing_date,
]);
$query->andFilterWhere(['like', 'uuid', $this->uuid]);
diff --git a/backend/modules/questionnaire/views/user-questionnaire/_search.php b/backend/modules/questionnaire/views/user-questionnaire/_search.php
index f7abd5d..1d84d05 100644
--- a/backend/modules/questionnaire/views/user-questionnaire/_search.php
+++ b/backend/modules/questionnaire/views/user-questionnaire/_search.php
@@ -33,6 +33,8 @@ use yii\widgets\ActiveForm;
field($model, 'percent_correct_answers') ?>
+ field($model, 'testing_date') ?>
+
= Html::submitButton('Search', ['class' => 'btn btn-primary']) ?>
= Html::resetButton('Reset', ['class' => 'btn btn-default']) ?>
diff --git a/backend/modules/questionnaire/views/user-questionnaire/index.php b/backend/modules/questionnaire/views/user-questionnaire/index.php
index e4dcc07..7b64d76 100644
--- a/backend/modules/questionnaire/views/user-questionnaire/index.php
+++ b/backend/modules/questionnaire/views/user-questionnaire/index.php
@@ -53,6 +53,7 @@ $this->params['breadcrumbs'][] = $this->title;
],
'created_at',
'updated_at',
+ 'testing_date',
['class' => 'yii\grid\ActionColumn'],
],
diff --git a/backend/modules/questionnaire/views/user-questionnaire/view.php b/backend/modules/questionnaire/views/user-questionnaire/view.php
index 7b303c9..9ae3e09 100644
--- a/backend/modules/questionnaire/views/user-questionnaire/view.php
+++ b/backend/modules/questionnaire/views/user-questionnaire/view.php
@@ -77,6 +77,7 @@ YiiAsset::register($this);
],
'created_at',
'updated_at',
+ 'testing_date',
],
]) ?>
diff --git a/common/models/UserQuestionnaire.php b/common/models/UserQuestionnaire.php
index daf4899..2002c40 100644
--- a/common/models/UserQuestionnaire.php
+++ b/common/models/UserQuestionnaire.php
@@ -63,7 +63,7 @@ class UserQuestionnaire extends ActiveRecord
[['questionnaire_id', 'user_id', 'status'], 'required'],
[['questionnaire_id', 'user_id', 'score', 'status'], 'integer'],
[['percent_correct_answers'], 'number'],
- [['created_at', 'updated_at'], 'safe'],
+ [['created_at', 'updated_at', 'testing_date'], 'safe'],
[['uuid'], 'string', 'max' => 36],
[['uuid'], 'unique'],
[['questionnaire_id'], 'exist', 'skipOnError' => true, 'targetClass' => Questionnaire::className(), 'targetAttribute' => ['questionnaire_id' => 'id']],
@@ -74,8 +74,7 @@ class UserQuestionnaire extends ActiveRecord
public function beforeSave($insert)
{
if (parent::beforeSave($insert)) {
- if (empty($this->uuid))
- {
+ if (empty($this->uuid)) {
$this->uuid = UUIDHelper::v4();
}
return true;
@@ -98,6 +97,7 @@ class UserQuestionnaire extends ActiveRecord
'status' => 'Статус',
'created_at' => 'Дата создания',
'updated_at' => 'Дата обновления',
+ 'testing_date' => 'Дата тестирования',
'percent_correct_answers' => 'Процент правильных ответов',
];
}
@@ -178,8 +178,18 @@ class UserQuestionnaire extends ActiveRecord
public static function findActiveUserQuestionnaires($user_id): array
{
- return self::find()->where(['user_id' => $user_id])
- ->andWhere(['status' => '1'])
+ $models = self::find()
+ ->where(['user_id' => $user_id])
+ ->andWhere(['user_questionnaire.status' => '1'])
->all();
+
+ $modelsArr = array();
+ foreach ($models as $model) {
+ $modelsArr[] = array_merge($model->toArray(), [
+ 'questionnaire_title' => $model->getQuestionnaireTitle()
+ ]);
+ }
+
+ return $modelsArr;
}
}
diff --git a/console/migrations/m220214_143240_add_column_testing_date_to_user_questionnaire_table.php b/console/migrations/m220214_143240_add_column_testing_date_to_user_questionnaire_table.php
new file mode 100644
index 0000000..7e914bd
--- /dev/null
+++ b/console/migrations/m220214_143240_add_column_testing_date_to_user_questionnaire_table.php
@@ -0,0 +1,40 @@
+addColumn('user_questionnaire', 'testing_date', $this->dateTime()->defaultValue(null));
+ }
+
+ /**
+ * {@inheritdoc}
+ */
+ public function safeDown()
+ {
+ $this->dropColumn('user_questionnaire', 'testing_date');
+ }
+
+ /*
+ // Use up()/down() to run migration code without a transaction.
+ public function up()
+ {
+
+ }
+
+ public function down()
+ {
+ echo "m220214_143240_add_column_testing_date_to_user_questionnaire_table cannot be reverted.\n";
+
+ return false;
+ }
+ */
+}
diff --git a/frontend-access.log b/frontend-access.log
index dbf831f..a144d13 100644
--- a/frontend-access.log
+++ b/frontend-access.log
@@ -91299,3 +91299,578 @@
127.0.0.1 - - [16/Jan/2022:23:24:17 +0300] "POST /api/task/create-task HTTP/1.1" 200 351 "-" "PostmanRuntime/7.28.4"
127.0.0.1 - - [16/Jan/2022:23:32:38 +0300] "POST /api/task/create-task HTTP/1.1" 500 230 "-" "PostmanRuntime/7.28.4"
127.0.0.1 - - [16/Jan/2022:23:38:09 +0300] "POST /api/task/update HTTP/1.1" 404 161 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:15:07:20 +0300] "GET / HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:21 +0300] "GET /site/login HTTP/1.1" 200 8460 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:21 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:21 +0300] "GET /assets/27128343/yii.activeForm.js HTTP/1.1" 200 36765 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:21 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 200 20934 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:21 +0300] "GET /assets/27128343/yii.validation.js HTTP/1.1" 200 16405 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:21 +0300] "GET /js/site.js HTTP/1.1" 200 596 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:21 +0300] "GET /css/site.css HTTP/1.1" 200 2011 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:21 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 200 288580 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:21 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 200 75484 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:21 +0300] "GET /debug/default/toolbar?tag=620a45f8eb722 HTTP/1.1" 200 3320 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:21 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:25 +0300] "POST /site/login HTTP/1.1" 200 8498 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:26 +0300] "GET /debug/default/toolbar?tag=620a45fd8b290 HTTP/1.1" 200 3379 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:33 +0300] "GET / HTTP/1.1" 200 14643 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /assets/5b57ee2f/css/select2-addl.css HTTP/1.1" 200 994 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /assets/39b83f70/css/select2.css HTTP/1.1" 200 17358 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /assets/5b57ee2f/css/select2-krajee.css HTTP/1.1" 200 20817 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /assets/bae3a4f/css/kv-widgets.css HTTP/1.1" 200 813 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /css/site.css HTTP/1.1" 200 805 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /assets/ccdf1f3a/css/font-awesome.min.css HTTP/1.1" 200 31000 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /assets/cd83ad4b/css/AdminLTE.min.css HTTP/1.1" 200 106549 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /assets/cd83ad4b/css/skins/_all-skins.min.css HTTP/1.1" 200 41635 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 200 7070 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /assets/39b83f70/js/select2.full.js HTTP/1.1" 200 173566 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 200 288580 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /assets/39b83f70/js/i18n/ru.js HTTP/1.1" 200 1171 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /assets/5b57ee2f/js/select2-krajee.js HTTP/1.1" 200 7344 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 200 20934 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /assets/bae3a4f/js/kv-widgets.js HTTP/1.1" 200 1061 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /assets/27128343/yii.gridView.js HTTP/1.1" 200 9507 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /js/site.js HTTP/1.1" 200 1214 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 200 75484 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 200 13611 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /media/upload/HarleyQuinn.jpg HTTP/1.1" 404 11711 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET / HTTP/1.1" 200 14648 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /media/upload/HarleyQuinn.jpg HTTP/1.1" 404 11713 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /assets/bae3a4f/img/loading-plugin.gif HTTP/1.1" 200 847 "http://backend.guild.loc/assets/bae3a4f/css/kv-widgets.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /assets/ccdf1f3a/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 77160 "http://backend.guild.loc/assets/ccdf1f3a/css/font-awesome.min.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET / HTTP/1.1" 200 14648 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /debug/default/toolbar?tag=620a4605a1faa HTTP/1.1" 200 3411 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:07:34 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:09:28 +0300] "GET / HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:09:28 +0300] "GET /site/login HTTP/1.1" 200 7787 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:09:28 +0300] "GET /assets/ccdf1f3a/css/font-awesome.min.css HTTP/1.1" 200 31000 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:09:28 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:09:28 +0300] "GET /assets/cd83ad4b/css/AdminLTE.min.css HTTP/1.1" 200 106549 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:09:28 +0300] "GET /assets/cd83ad4b/css/skins/_all-skins.min.css HTTP/1.1" 200 41635 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:09:28 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 200 20934 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:09:28 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 200 288580 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:09:28 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 200 75484 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:09:28 +0300] "GET /assets/27128343/yii.activeForm.js HTTP/1.1" 200 36765 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:09:28 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 200 13611 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:09:28 +0300] "GET /debug/default/toolbar?tag=620a46782241e HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:09:28 +0300] "GET /assets/71772193/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 200 18028 "http://backend.guild.loc/assets/71772193/css/bootstrap.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:17 +0300] "GET / HTTP/1.1" 200 15653 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:17 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:17 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:17 +0300] "GET /assets/39b83f70/js/select2.full.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:17 +0300] "GET /assets/39b83f70/js/i18n/ru.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:17 +0300] "GET /assets/5b57ee2f/js/select2-krajee.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:17 +0300] "GET /assets/bae3a4f/js/kv-widgets.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:17 +0300] "GET /assets/27128343/yii.gridView.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:17 +0300] "GET /js/site.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:17 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:17 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:17 +0300] "GET /media/upload/HarleyQuinn.jpg HTTP/1.1" 404 12677 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:17 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:17 +0300] "GET / HTTP/1.1" 200 15654 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:17 +0300] "GET /debug/default/toolbar?tag=620a46a921a15 HTTP/1.1" 200 3413 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:20 +0300] "GET /interview/interview HTTP/1.1" 200 12834 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:20 +0300] "GET /debug/default/toolbar?tag=620a46ac7d2fa HTTP/1.1" 200 3412 "http://backend.guild.loc/interview/interview" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:25 +0300] "GET /document/document HTTP/1.1" 200 14942 "http://backend.guild.loc/interview/interview" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:25 +0300] "GET /debug/default/toolbar?tag=620a46b0dbb79 HTTP/1.1" 200 3410 "http://backend.guild.loc/document/document" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:26 +0300] "GET /document/template HTTP/1.1" 200 14138 "http://backend.guild.loc/document/document" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:26 +0300] "GET /debug/default/toolbar?tag=620a46b21a108 HTTP/1.1" 200 3414 "http://backend.guild.loc/document/template" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:27 +0300] "GET /document/document-field HTTP/1.1" 200 14436 "http://backend.guild.loc/document/template" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:27 +0300] "GET /debug/default/toolbar?tag=620a46b308665 HTTP/1.1" 200 3415 "http://backend.guild.loc/document/document-field" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:28 +0300] "GET /document/template-document-field HTTP/1.1" 200 15520 "http://backend.guild.loc/document/document-field" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:29 +0300] "GET /debug/default/toolbar?tag=620a46b4cab2a HTTP/1.1" 200 3432 "http://backend.guild.loc/document/template-document-field" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:29 +0300] "GET /document/document-field-value HTTP/1.1" 200 15611 "http://backend.guild.loc/document/template-document-field" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:30 +0300] "GET /debug/default/toolbar?tag=620a46b5af393 HTTP/1.1" 200 3431 "http://backend.guild.loc/document/document-field-value" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:31 +0300] "GET /document/document HTTP/1.1" 200 14948 "http://backend.guild.loc/document/document-field-value" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:10:31 +0300] "GET /debug/default/toolbar?tag=620a46b7352b0 HTTP/1.1" 200 3411 "http://backend.guild.loc/document/document" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:26:27 +0300] "GET / HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:26:27 +0300] "GET /site/login HTTP/1.1" 200 8460 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:26:27 +0300] "GET /debug/default/toolbar?tag=620a4a7381f17 HTTP/1.1" 200 3319 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:26:52 +0300] "POST /site/login HTTP/1.1" 200 8498 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:26:53 +0300] "GET /debug/default/toolbar?tag=620a4a8cd85f7 HTTP/1.1" 200 3376 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:26:57 +0300] "POST /site/login HTTP/1.1" 200 8499 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:26:57 +0300] "GET /debug/default/toolbar?tag=620a4a9171290 HTTP/1.1" 200 3378 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:26:59 +0300] "POST /site/login HTTP/1.1" 200 8499 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:26:59 +0300] "GET /debug/default/toolbar?tag=620a4a93816a7 HTTP/1.1" 200 3377 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:27:01 +0300] "GET /site/signup HTTP/1.1" 200 8578 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:27:01 +0300] "GET /debug/default/toolbar?tag=620a4a9535fd6 HTTP/1.1" 200 3324 "http://guild.loc/site/signup" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:27:25 +0300] "POST /site/signup HTTP/1.1" 302 5 "http://guild.loc/site/signup" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:27:25 +0300] "GET / HTTP/1.1" 200 7764 "http://guild.loc/site/signup" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:27:26 +0300] "GET /debug/default/toolbar?tag=620a4aadd18aa HTTP/1.1" 200 3408 "http://guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:27:29 +0300] "GET /reports/reports/index HTTP/1.1" 200 8315 "http://guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:27:30 +0300] "GET /assets/27128343/yii.gridView.js HTTP/1.1" 200 9507 "http://guild.loc/reports/reports/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:27:30 +0300] "GET /assets/71772193/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 200 18028 "http://guild.loc/assets/71772193/css/bootstrap.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:27:30 +0300] "GET /debug/default/toolbar?tag=620a4ab1cec64 HTTP/1.1" 200 3405 "http://guild.loc/reports/reports/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:27:32 +0300] "GET /reports/reports/create HTTP/1.1" 200 9711 "http://guild.loc/reports/reports/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:27:32 +0300] "GET /assets/fcef0bbf/css/bootstrap-datepicker3.css HTTP/1.1" 200 23425 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:27:32 +0300] "GET /assets/fcef0bbf/css/datepicker-kv.css HTTP/1.1" 200 1165 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:27:32 +0300] "GET /assets/bae3a4f/css/kv-widgets.css HTTP/1.1" 200 813 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:27:32 +0300] "GET /assets/597f83ba/css/multiple-input.css HTTP/1.1" 200 1753 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:27:32 +0300] "GET /assets/fcef0bbf/js/bootstrap-datepicker.js HTTP/1.1" 200 76980 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:27:32 +0300] "GET /assets/fcef0bbf/js/datepicker-kv.js HTTP/1.1" 200 1796 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:27:32 +0300] "GET /assets/fcef0bbf/js/locales/bootstrap-datepicker.ru.min.js HTTP/1.1" 200 733 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:27:32 +0300] "GET /assets/bae3a4f/js/kv-widgets.js HTTP/1.1" 200 1061 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:27:32 +0300] "GET /assets/597f83ba/js/jquery.multipleInput.js HTTP/1.1" 200 17708 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:27:32 +0300] "GET /debug/default/toolbar?tag=620a4ab4507bf HTTP/1.1" 200 3408 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:28:08 +0300] "POST /reports/reports/create HTTP/1.1" 500 71885 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:28:20 +0300] "GET /reports/reports/create HTTP/1.1" 200 9710 "http://guild.loc/reports/reports/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:28:20 +0300] "GET /debug/default/toolbar?tag=620a4ae444e8c HTTP/1.1" 200 3408 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:28:26 +0300] "GET / HTTP/1.1" 200 15651 "http://backend.guild.loc/document/document" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:28:27 +0300] "GET /media/upload/HarleyQuinn.jpg HTTP/1.1" 404 12671 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:28:27 +0300] "GET / HTTP/1.1" 200 15653 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:28:27 +0300] "GET /debug/default/toolbar?tag=620a4aeaa51a6 HTTP/1.1" 200 3413 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:28:30 +0300] "GET /card/user-card/create HTTP/1.1" 200 17161 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:28:31 +0300] "GET /assets/3529030e/translations/ru.js HTTP/1.1" 200 3283 "http://backend.guild.loc/card/user-card/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:28:31 +0300] "GET /assets/5c60e453/ckeditor-file-upload.js HTTP/1.1" 200 1634 "http://backend.guild.loc/card/user-card/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:28:31 +0300] "GET /assets/597f83ba/css/multiple-input.css HTTP/1.1" 200 1753 "http://backend.guild.loc/card/user-card/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:28:31 +0300] "GET /assets/597f83ba/js/jquery.multipleInput.js HTTP/1.1" 200 17708 "http://backend.guild.loc/card/user-card/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:28:31 +0300] "GET /assets/3529030e/ckeditor.js HTTP/1.1" 200 575905 "http://backend.guild.loc/card/user-card/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:28:31 +0300] "GET /assets/27128343/yii.activeForm.js HTTP/1.1" 200 36765 "http://backend.guild.loc/card/user-card/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:28:31 +0300] "GET /assets/27128343/yii.validation.js HTTP/1.1" 200 16405 "http://backend.guild.loc/card/user-card/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:28:31 +0300] "GET /assets/d84beeed/elfinder.callback.js HTTP/1.1" 200 997 "http://backend.guild.loc/card/user-card/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:28:31 +0300] "GET /debug/default/toolbar?tag=620a4aeeb95c1 HTTP/1.1" 200 3411 "http://backend.guild.loc/card/user-card/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:28:31 +0300] "GET /assets/71772193/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 200 18028 "http://backend.guild.loc/assets/71772193/css/bootstrap.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:29:10 +0300] "POST /card/user-card/create HTTP/1.1" 302 5 "http://backend.guild.loc/card/user-card/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:29:10 +0300] "GET /card/user-card/view?id=15 HTTP/1.1" 200 13386 "http://backend.guild.loc/card/user-card/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:29:10 +0300] "GET /debug/default/toolbar?tag=620a4b166255f HTTP/1.1" 200 3410 "http://backend.guild.loc/card/user-card/view?id=15" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:29:28 +0300] "GET /card/user-card/index HTTP/1.1" 200 15787 "http://backend.guild.loc/card/user-card/view?id=15" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:29:28 +0300] "GET /card/user-card/index HTTP/1.1" 200 15786 "http://backend.guild.loc/card/user-card/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:29:29 +0300] "GET /media/upload/HarleyQuinn.jpg HTTP/1.1" 404 12674 "http://backend.guild.loc/card/user-card/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:29:29 +0300] "GET /debug/default/toolbar?tag=620a4b288b0f3 HTTP/1.1" 200 3414 "http://backend.guild.loc/card/user-card/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:32:27 +0300] "POST /site/logout HTTP/1.1" 302 5 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:32:27 +0300] "GET / HTTP/1.1" 302 5 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:32:27 +0300] "GET /site/login HTTP/1.1" 200 8459 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:32:27 +0300] "GET /debug/default/toolbar?tag=620a4bdb313d3 HTTP/1.1" 200 3319 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:32:28 +0300] "GET /site/login HTTP/1.1" 200 8460 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:32:29 +0300] "GET /debug/default/toolbar?tag=620a4bdc95713 HTTP/1.1" 200 3319 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:32:41 +0300] "POST /site/login HTTP/1.1" 200 8504 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:32:42 +0300] "GET /debug/default/toolbar?tag=620a4be9c31e2 HTTP/1.1" 200 3377 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:32:47 +0300] "GET /site/signup HTTP/1.1" 200 8579 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:32:47 +0300] "GET /debug/default/toolbar?tag=620a4bef1a45e HTTP/1.1" 200 3322 "http://guild.loc/site/signup" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:33:07 +0300] "POST /site/signup HTTP/1.1" 302 5 "http://guild.loc/site/signup" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:33:07 +0300] "GET / HTTP/1.1" 200 7763 "http://guild.loc/site/signup" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:33:07 +0300] "GET /debug/default/toolbar?tag=620a4c034d36b HTTP/1.1" 200 3410 "http://guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:33:14 +0300] "GET /reports/reports/index HTTP/1.1" 200 8314 "http://guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:33:15 +0300] "GET /debug/default/toolbar?tag=620a4c0aca8a2 HTTP/1.1" 200 3406 "http://guild.loc/reports/reports/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:33:17 +0300] "GET /site/index HTTP/1.1" 200 7762 "http://guild.loc/reports/reports/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:33:17 +0300] "GET /debug/default/toolbar?tag=620a4c0d02b7d HTTP/1.1" 200 3405 "http://guild.loc/site/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:33:18 +0300] "GET /access/access/index HTTP/1.1" 200 8154 "http://guild.loc/site/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:33:18 +0300] "GET /debug/default/toolbar?tag=620a4c0defb1e HTTP/1.1" 200 3405 "http://guild.loc/access/access/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:33:21 +0300] "GET /reports/reports/index HTTP/1.1" 200 8315 "http://guild.loc/access/access/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:33:22 +0300] "GET /debug/default/toolbar?tag=620a4c11ec4d6 HTTP/1.1" 200 3405 "http://guild.loc/reports/reports/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:33:53 +0300] "GET /card/user-card/create HTTP/1.1" 200 17161 "http://backend.guild.loc/card/user-card/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:33:54 +0300] "GET /debug/default/toolbar?tag=620a4c31c58aa HTTP/1.1" 200 3410 "http://backend.guild.loc/card/user-card/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:34:42 +0300] "POST /card/user-card/create HTTP/1.1" 302 5 "http://backend.guild.loc/card/user-card/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:34:42 +0300] "GET /card/user-card/view?id=16 HTTP/1.1" 200 13390 "http://backend.guild.loc/card/user-card/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:34:42 +0300] "GET /debug/default/toolbar?tag=620a4c62a483f HTTP/1.1" 200 3409 "http://backend.guild.loc/card/user-card/view?id=16" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:35:21 +0300] "POST /site/logout HTTP/1.1" 302 5 "http://guild.loc/reports/reports/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:35:22 +0300] "GET / HTTP/1.1" 302 5 "http://guild.loc/reports/reports/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:35:22 +0300] "GET /site/login HTTP/1.1" 200 8460 "http://guild.loc/reports/reports/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:35:22 +0300] "GET /debug/default/toolbar?tag=620a4c8a0fc7e HTTP/1.1" 200 3319 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:35:29 +0300] "POST /site/login HTTP/1.1" 200 8505 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:35:29 +0300] "GET /debug/default/toolbar?tag=620a4c901bc0e HTTP/1.1" 200 3377 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:35:40 +0300] "POST /site/login HTTP/1.1" 200 8508 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:35:40 +0300] "GET /debug/default/toolbar?tag=620a4c9b688c4 HTTP/1.1" 200 3378 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:35:47 +0300] "POST /site/login HTTP/1.1" 200 8504 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:35:47 +0300] "GET /debug/default/toolbar?tag=620a4ca237c1e HTTP/1.1" 200 3376 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:36:01 +0300] "POST /site/login HTTP/1.1" 200 8509 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:36:02 +0300] "GET /debug/default/toolbar?tag=620a4cb0af173 HTTP/1.1" 200 3378 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:38:54 +0300] "GET / HTTP/1.1" 200 15853 "http://backend.guild.loc/card/user-card/view?id=16" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:38:55 +0300] "GET / HTTP/1.1" 200 15859 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:38:55 +0300] "GET /media/upload/HarleyQuinn.jpg HTTP/1.1" 404 12673 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:38:55 +0300] "GET /debug/default/toolbar?tag=620a4d5ed709d HTTP/1.1" 200 3413 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:38:56 +0300] "GET /card/user-card/create HTTP/1.1" 200 17163 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:38:56 +0300] "GET /debug/default/toolbar?tag=620a4d5ff028a HTTP/1.1" 200 3410 "http://backend.guild.loc/card/user-card/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:39:39 +0300] "POST /card/user-card/create HTTP/1.1" 302 5 "http://backend.guild.loc/card/user-card/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:39:39 +0300] "GET /card/user-card/view?id=17 HTTP/1.1" 200 13407 "http://backend.guild.loc/card/user-card/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:39:40 +0300] "GET /debug/default/toolbar?tag=620a4d8bdca8c HTTP/1.1" 200 3410 "http://backend.guild.loc/card/user-card/view?id=17" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:40:09 +0300] "POST /site/login HTTP/1.1" 302 5 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:40:09 +0300] "GET / HTTP/1.1" 200 8267 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:40:09 +0300] "GET /debug/default/toolbar?tag=620a4da97ce26 HTTP/1.1" 200 3411 "http://guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:40:18 +0300] "GET /reports/reports/index HTTP/1.1" 200 8315 "http://guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:40:18 +0300] "GET /debug/default/toolbar?tag=620a4db28cbb3 HTTP/1.1" 200 3403 "http://guild.loc/reports/reports/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:40:20 +0300] "GET /reports/reports/create HTTP/1.1" 200 9704 "http://guild.loc/reports/reports/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:40:20 +0300] "GET /assets/fcef0bbf/js/bootstrap-datepicker.js HTTP/1.1" 304 0 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:40:20 +0300] "GET /assets/fcef0bbf/js/datepicker-kv.js HTTP/1.1" 304 0 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:40:20 +0300] "GET /assets/fcef0bbf/js/locales/bootstrap-datepicker.ru.min.js HTTP/1.1" 304 0 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:40:20 +0300] "GET /assets/bae3a4f/js/kv-widgets.js HTTP/1.1" 304 0 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:40:20 +0300] "GET /assets/597f83ba/js/jquery.multipleInput.js HTTP/1.1" 304 0 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:40:20 +0300] "GET /assets/fcef0bbf/css/bootstrap-datepicker3.css HTTP/1.1" 200 23425 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:40:20 +0300] "GET /assets/fcef0bbf/css/datepicker-kv.css HTTP/1.1" 200 1165 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:40:20 +0300] "GET /assets/bae3a4f/css/kv-widgets.css HTTP/1.1" 200 813 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:40:20 +0300] "GET /assets/597f83ba/css/multiple-input.css HTTP/1.1" 200 1753 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:40:20 +0300] "GET /debug/default/toolbar?tag=620a4db44b1ed HTTP/1.1" 200 3405 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:40:33 +0300] "POST /reports/reports/create HTTP/1.1" 302 5 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:40:33 +0300] "GET /reports/reports/view?id=1 HTTP/1.1" 200 8140 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:40:33 +0300] "GET /debug/default/toolbar?tag=620a4dc17e9fd HTTP/1.1" 200 3404 "http://guild.loc/reports/reports/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:40:35 +0300] "GET /reports/reports/index?id=1 HTTP/1.1" 200 9182 "http://guild.loc/reports/reports/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:40:36 +0300] "GET /debug/default/toolbar?tag=620a4dc3ed226 HTTP/1.1" 200 3404 "http://guild.loc/reports/reports/index?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:40:40 +0300] "GET /reports/reports/view?id=1 HTTP/1.1" 200 8138 "http://guild.loc/reports/reports/index?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:40:40 +0300] "GET /debug/default/toolbar?tag=620a4dc842e85 HTTP/1.1" 200 3402 "http://guild.loc/reports/reports/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:40:47 +0300] "GET /reports/reports/index?id=1 HTTP/1.1" 200 9179 "http://guild.loc/reports/reports/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:40:47 +0300] "GET /debug/default/toolbar?tag=620a4dcf740b3 HTTP/1.1" 200 3404 "http://guild.loc/reports/reports/index?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:43:10 +0300] "GET /reports/reports/create HTTP/1.1" 200 9708 "http://guild.loc/reports/reports/index?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:43:10 +0300] "GET /assets/fcef0bbf/css/bootstrap-datepicker3.css HTTP/1.1" 304 0 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:43:10 +0300] "GET /assets/fcef0bbf/css/datepicker-kv.css HTTP/1.1" 304 0 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:43:10 +0300] "GET /assets/bae3a4f/css/kv-widgets.css HTTP/1.1" 304 0 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:43:10 +0300] "GET /assets/597f83ba/css/multiple-input.css HTTP/1.1" 304 0 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:43:10 +0300] "GET /assets/fcef0bbf/js/bootstrap-datepicker.js HTTP/1.1" 304 0 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:43:10 +0300] "GET /assets/fcef0bbf/js/datepicker-kv.js HTTP/1.1" 304 0 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:43:10 +0300] "GET /assets/fcef0bbf/js/locales/bootstrap-datepicker.ru.min.js HTTP/1.1" 304 0 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:43:10 +0300] "GET /assets/bae3a4f/js/kv-widgets.js HTTP/1.1" 304 0 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:43:10 +0300] "GET /assets/597f83ba/js/jquery.multipleInput.js HTTP/1.1" 304 0 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:43:10 +0300] "GET /debug/default/toolbar?tag=620a4e5e5ca6c HTTP/1.1" 200 3407 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:43:50 +0300] "POST /reports/reports/create HTTP/1.1" 302 5 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:43:50 +0300] "GET /reports/reports/view?id=2 HTTP/1.1" 200 8147 "http://guild.loc/reports/reports/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:43:50 +0300] "GET /debug/default/toolbar?tag=620a4e866ed3d HTTP/1.1" 200 3403 "http://guild.loc/reports/reports/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:44:19 +0300] "GET /reports/reports/index?id=2 HTTP/1.1" 200 9328 "http://guild.loc/reports/reports/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:44:19 +0300] "GET /debug/default/toolbar?tag=620a4ea31ebce HTTP/1.1" 200 3404 "http://guild.loc/reports/reports/index?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:51:05 +0300] "GET /reports/reports/index?id=2 HTTP/1.1" 200 9325 "http://guild.loc/reports/reports/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:51:05 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 304 0 "http://guild.loc/reports/reports/index?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:51:05 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 304 0 "http://guild.loc/reports/reports/index?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:51:05 +0300] "GET /assets/27128343/yii.gridView.js HTTP/1.1" 304 0 "http://guild.loc/reports/reports/index?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:51:05 +0300] "GET /js/site.js HTTP/1.1" 304 0 "http://guild.loc/reports/reports/index?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:51:05 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 304 0 "http://guild.loc/reports/reports/index?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:51:05 +0300] "GET /debug/default/toolbar?tag=620a5039067ab HTTP/1.1" 200 3405 "http://guild.loc/reports/reports/index?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:51:05 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://guild.loc/reports/reports/index?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:53:43 +0300] "GET /card/user-card/view?id=17 HTTP/1.1" 200 13602 "http://backend.guild.loc/card/user-card/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:53:44 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 304 0 "http://backend.guild.loc/card/user-card/view?id=17" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:53:44 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 304 0 "http://backend.guild.loc/card/user-card/view?id=17" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:53:44 +0300] "GET /assets/27128343/yii.gridView.js HTTP/1.1" 304 0 "http://backend.guild.loc/card/user-card/view?id=17" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:53:44 +0300] "GET /js/site.js HTTP/1.1" 304 0 "http://backend.guild.loc/card/user-card/view?id=17" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:53:44 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 304 0 "http://backend.guild.loc/card/user-card/view?id=17" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:53:44 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 304 0 "http://backend.guild.loc/card/user-card/view?id=17" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:53:44 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 304 0 "http://backend.guild.loc/card/user-card/view?id=17" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:53:44 +0300] "GET /debug/default/toolbar?tag=620a50d7c3d34 HTTP/1.1" 200 3410 "http://backend.guild.loc/card/user-card/view?id=17" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:53:44 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/card/user-card/view?id=17" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:53:55 +0300] "GET /balance/balance HTTP/1.1" 200 14060 "http://backend.guild.loc/card/user-card/view?id=17" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:53:55 +0300] "GET /assets/944dea0/themes/smoothness/jquery-ui.css HTTP/1.1" 200 36536 "http://backend.guild.loc/balance/balance" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:53:55 +0300] "GET /assets/944dea0/jquery-ui.js HTTP/1.1" 200 520714 "http://backend.guild.loc/balance/balance" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:53:55 +0300] "GET /assets/944dea0/ui/i18n/datepicker-ru.js HTTP/1.1" 200 1382 "http://backend.guild.loc/balance/balance" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:53:55 +0300] "GET /debug/default/toolbar?tag=620a50e35bd8c HTTP/1.1" 200 3405 "http://backend.guild.loc/balance/balance" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:54:03 +0300] "GET /reports/reports HTTP/1.1" 200 13409 "http://backend.guild.loc/balance/balance" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:54:03 +0300] "GET /assets/c940762e/js/script.js HTTP/1.1" 200 0 "http://backend.guild.loc/reports/reports" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:54:03 +0300] "GET /assets/c940762e/js/src/DateHelper.js HTTP/1.1" 200 2429 "http://backend.guild.loc/reports/reports" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:54:03 +0300] "GET /assets/c940762e/css/style.css HTTP/1.1" 200 6787 "http://backend.guild.loc/reports/reports" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:54:03 +0300] "GET /assets/c940762e/js/src/CalendarHelper.js HTTP/1.1" 200 9539 "http://backend.guild.loc/reports/reports" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:54:03 +0300] "GET /assets/9c1d1a99/jquery.pjax.js HTTP/1.1" 200 29273 "http://backend.guild.loc/reports/reports" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:54:03 +0300] "GET /debug/default/toolbar?tag=620a50eb02f2a HTTP/1.1" 200 3404 "http://backend.guild.loc/reports/reports" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:54:03 +0300] "GET /reports/ajax/get-reports-for-month-by-id-year-month?&month=02&year=2022 HTTP/1.1" 200 38 "http://backend.guild.loc/reports/reports" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:54:03 +0300] "GET /reports/ajax/get-reports-for-day-by-date?date=2022-02-14 HTTP/1.1" 200 1523 "http://backend.guild.loc/reports/reports" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:54:13 +0300] "GET /reports/reports/list HTTP/1.1" 200 15112 "http://backend.guild.loc/reports/reports" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:54:13 +0300] "GET /debug/default/toolbar?tag=620a50f502d48 HTTP/1.1" 200 3405 "http://backend.guild.loc/reports/reports/list" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:54:16 +0300] "GET /reports/reports HTTP/1.1" 200 13414 "http://backend.guild.loc/reports/reports/list" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:54:16 +0300] "GET /debug/default/toolbar?tag=620a50f88abe3 HTTP/1.1" 200 3406 "http://backend.guild.loc/reports/reports" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:54:17 +0300] "GET /reports/ajax/get-reports-for-month-by-id-year-month?&month=02&year=2022 HTTP/1.1" 200 38 "http://backend.guild.loc/reports/reports" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:54:17 +0300] "GET /reports/ajax/get-reports-for-day-by-date?date=2022-02-14 HTTP/1.1" 200 1523 "http://backend.guild.loc/reports/reports" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:54:21 +0300] "GET /reports/ajax/get-reports-for-day-by-date?date=2022-02-14 HTTP/1.1" 200 1523 "http://backend.guild.loc/reports/reports" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:54:23 +0300] "GET /reports/ajax/get-reports-for-day-by-date?date=2022-02-10 HTTP/1.1" 200 456 "http://backend.guild.loc/reports/reports" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:54:24 +0300] "GET /reports/ajax/get-reports-for-day-by-date?date=2022-02-11 HTTP/1.1" 200 456 "http://backend.guild.loc/reports/reports" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:54:25 +0300] "GET /reports/ajax/get-reports-for-day-by-date?date=2022-02-12 HTTP/1.1" 200 455 "http://backend.guild.loc/reports/reports" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:54:25 +0300] "GET /reports/ajax/get-reports-for-day-by-date?date=2022-02-13 HTTP/1.1" 200 457 "http://backend.guild.loc/reports/reports" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:54:25 +0300] "GET /reports/ajax/get-reports-for-day-by-date?date=2022-02-14 HTTP/1.1" 200 1523 "http://backend.guild.loc/reports/reports" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:55:46 +0300] "GET /reports/reports/list HTTP/1.1" 200 15114 "http://backend.guild.loc/reports/reports" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:55:46 +0300] "GET /debug/default/toolbar?tag=620a51527c4d2 HTTP/1.1" 200 3405 "http://backend.guild.loc/reports/reports/list" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:55:48 +0300] "GET /reports/reports HTTP/1.1" 200 13416 "http://backend.guild.loc/reports/reports/list" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:55:49 +0300] "GET /debug/default/toolbar?tag=620a5154b6b32 HTTP/1.1" 200 3406 "http://backend.guild.loc/reports/reports" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:55:49 +0300] "GET /reports/ajax/get-reports-for-month-by-id-year-month?&month=02&year=2022 HTTP/1.1" 200 38 "http://backend.guild.loc/reports/reports" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:55:49 +0300] "GET /reports/ajax/get-reports-for-day-by-date?date=2022-02-14 HTTP/1.1" 200 1523 "http://backend.guild.loc/reports/reports" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:55:50 +0300] "GET /reports/reports/list HTTP/1.1" 200 15113 "http://backend.guild.loc/reports/reports" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:55:50 +0300] "GET /debug/default/toolbar?tag=620a51565e96b HTTP/1.1" 200 3406 "http://backend.guild.loc/reports/reports/list" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:55:56 +0300] "GET /reports/reports/calendar?user_id=17 HTTP/1.1" 200 13408 "http://backend.guild.loc/reports/reports/list" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:55:57 +0300] "GET /debug/default/toolbar?tag=620a515cc5472 HTTP/1.1" 200 3408 "http://backend.guild.loc/reports/reports/calendar?user_id=17" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:55:57 +0300] "GET /reports/ajax/get-reports-for-month-by-id-year-month?user_id=17&&month=02&year=2022 HTTP/1.1" 200 38 "http://backend.guild.loc/reports/reports/calendar?user_id=17" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:55:57 +0300] "GET /reports/ajax/get-reports-for-day-by-date?user_id=17&date=2022-02-14 HTTP/1.1" 200 1449 "http://backend.guild.loc/reports/reports/calendar?user_id=17" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:59:05 +0300] "GET /questionnaire/questionnaire HTTP/1.1" 200 15832 "http://backend.guild.loc/reports/reports/calendar?user_id=17" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:59:05 +0300] "GET /debug/default/toolbar?tag=620a521914f2e HTTP/1.1" 200 3413 "http://backend.guild.loc/questionnaire/questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:15:59:05 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:00:57 +0300] "GET /questionnaire/questionnaire/view?id=1 HTTP/1.1" 200 14592 "http://backend.guild.loc/questionnaire/questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:00:57 +0300] "GET /assets/71772193/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 200 18028 "http://backend.guild.loc/assets/71772193/css/bootstrap.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:00:57 +0300] "GET /debug/default/toolbar?tag=620a5289190ea HTTP/1.1" 200 3410 "http://backend.guild.loc/questionnaire/questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:00:57 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:02:42 +0300] "POST /api/user/login?login=testUser HTTP/1.1" 200 127 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:02:55 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 537 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:05:16 +0300] "GET /api/question/get-questions?uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 1532 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:05:42 +0300] "GET /questionnaire/questionnaire HTTP/1.1" 200 15834 "http://backend.guild.loc/questionnaire/questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:05:43 +0300] "GET /debug/default/toolbar?tag=620a53a6b0594 HTTP/1.1" 200 3411 "http://backend.guild.loc/questionnaire/questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:05:43 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:05:45 +0300] "GET /questionnaire/questionnaire/view?id=1 HTTP/1.1" 200 14594 "http://backend.guild.loc/questionnaire/questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:05:45 +0300] "GET /debug/default/toolbar?tag=620a53a9561d9 HTTP/1.1" 200 3421 "http://backend.guild.loc/questionnaire/questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:05:45 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:05:54 +0300] "GET /questionnaire/user-questionnaire HTTP/1.1" 200 15273 "http://backend.guild.loc/questionnaire/questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:05:54 +0300] "GET /debug/default/toolbar?tag=620a53b2613e8 HTTP/1.1" 200 3425 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:05:56 +0300] "GET /questionnaire/user-questionnaire/view?id=1 HTTP/1.1" 200 14893 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:05:56 +0300] "GET /debug/default/toolbar?tag=620a53b466e6a HTTP/1.1" 200 3420 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:05:57 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:06:43 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 537 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:14:11 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 807 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:15:29 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 951 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:16:32 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 500 1369 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:16:48 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 500 4204 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:17:31 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 951 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:17:54 +0300] "GET /api/question/get-questions?uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 1532 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:18:07 +0300] "GET /api/answer/get-answers?question_id=7 HTTP/1.1" 200 734 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:18:23 +0300] "GET /api/task-user/get-task-users?task_id=11 HTTP/1.1" 200 269 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:18:37 +0300] "GET /api/profile?id=5 HTTP/1.1" 200 414 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:18:52 +0300] "GET /api/document-field-value/document-field-value-list?document_id=31 HTTP/1.1" 404 161 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:19:02 +0300] "GET /api/document/get-document-list?document_type=3 HTTP/1.1" 404 157 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:19:11 +0300] "GET /api/document/get-document?document_id=880 HTTP/1.1" 404 163 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:19:25 +0300] "GET /api/document-field-value/document-field-value-list?document_id=31 HTTP/1.1" 404 161 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:19:32 +0300] "GET /api/document-field-value/document-field-value-list?document_id=1 HTTP/1.1" 404 161 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:20:57 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 951 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:21:35 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 500 4186 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:22:30 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 500 4186 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:22:42 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 500 4156 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:22:52 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 951 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:23:23 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 500 4314 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:23:42 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 500 4312 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:24:20 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 42 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:25:17 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 951 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:26:01 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 37 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:26:13 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 42 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:26:42 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 951 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:26:58 +0300] "GET /questionnaire/user-questionnaire HTTP/1.1" 200 15273 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:26:58 +0300] "GET /debug/default/toolbar?tag=620a58a22b716 HTTP/1.1" 200 3421 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:26:58 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:27:44 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 951 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:28:33 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 500 4740 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:32:50 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 500 4245 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:33:06 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 951 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:33:34 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 951 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:37:13 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 500 1237 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:41:14 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 951 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:41:40 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 951 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:42:30 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 951 "-" "PostmanRuntime/7.28.4"
+ 127.0.0.1 - - [14/Feb/2022:16:49:04 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 500 1305 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:49:58 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 951 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:50:24 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 951 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:51:00 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 500 1307 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:51:24 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 951 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:52:07 +0300] "GET /reports/reports/index?id=2 HTTP/1.1" 200 9328 "http://guild.loc/reports/reports/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:52:07 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://guild.loc/reports/reports/index?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:52:07 +0300] "GET /css/site.css HTTP/1.1" 200 2011 "http://guild.loc/reports/reports/index?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:52:07 +0300] "GET /js/site.js HTTP/1.1" 200 596 "http://guild.loc/reports/reports/index?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:52:07 +0300] "GET /debug/default/toolbar?tag=620a5e874b326 HTTP/1.1" 200 3410 "http://guild.loc/reports/reports/index?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:52:07 +0300] "GET /assets/71772193/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 200 18028 "http://guild.loc/assets/71772193/css/bootstrap.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:52:09 +0300] "GET /questionnaire/user-questionnaire HTTP/1.1" 200 15269 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:52:10 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 200 7070 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:52:10 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:52:10 +0300] "GET /css/site.css HTTP/1.1" 200 805 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:52:10 +0300] "GET /assets/ccdf1f3a/css/font-awesome.min.css HTTP/1.1" 200 31000 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:52:10 +0300] "GET /assets/cd83ad4b/css/AdminLTE.min.css HTTP/1.1" 200 106549 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:52:10 +0300] "GET /assets/cd83ad4b/css/skins/_all-skins.min.css HTTP/1.1" 200 41635 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:52:10 +0300] "GET /assets/ccdf1f3a/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 77160 "http://backend.guild.loc/assets/ccdf1f3a/css/font-awesome.min.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:52:10 +0300] "GET /debug/default/toolbar?tag=620a5e899fd5d HTTP/1.1" 200 3429 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:53:02 +0300] "GET /questionnaire/user-questionnaire HTTP/1.1" 200 34 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:53:54 +0300] "GET /questionnaire/user-questionnaire HTTP/1.1" 200 3721 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:16:57:01 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 500 1310 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:57:17 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 500 1310 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:16:58:39 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 1013 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:17:00:59 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 500 1315 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:17:01:35 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 500 1315 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:17:08:40 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 930 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:17:09:17 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 951 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:17:09:36 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 279 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:17:11:49 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 951 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:17:14:41 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 1122 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:17:16:24 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 1167 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:17:16:45 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 1023 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [14/Feb/2022:17:24:54 +0300] "GET /questionnaire/user-questionnaire HTTP/1.1" 200 15270 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:17:24:54 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:17:24:54 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:17:24:54 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:17:24:54 +0300] "GET /assets/27128343/yii.gridView.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:17:24:54 +0300] "GET /js/site.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:17:24:54 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:17:24:54 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:17:24:54 +0300] "GET /assets/ccdf1f3a/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 77160 "http://backend.guild.loc/assets/ccdf1f3a/css/font-awesome.min.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:17:24:54 +0300] "GET /debug/default/toolbar?tag=620a663648e99 HTTP/1.1" 200 3420 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:17:24:54 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:17:24:58 +0300] "GET /questionnaire/user-questionnaire HTTP/1.1" 200 15272 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:17:24:59 +0300] "GET /debug/default/toolbar?tag=620a663ad661c HTTP/1.1" 200 3428 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:17:24:59 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:17:25:36 +0300] "GET /questionnaire/user-questionnaire/view?id=8 HTTP/1.1" 200 13957 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [14/Feb/2022:17:25:37 +0300] "GET /debug/default/toolbar?tag=620a6660a2339 HTTP/1.1" 200 3420 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=8" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:10:34:07 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 1023 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [15/Feb/2022:10:35:07 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 1023 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [15/Feb/2022:10:35:28 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 1023 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [15/Feb/2022:10:36:49 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 753 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [15/Feb/2022:10:37:13 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 1023 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [15/Feb/2022:11:02:21 +0300] "GET /questionnaire/user-questionnaire/view?id=8 HTTP/1.1" 200 13955 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:22 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=8" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:22 +0300] "GET /css/site.css HTTP/1.1" 200 805 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=8" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:22 +0300] "GET /assets/ccdf1f3a/css/font-awesome.min.css HTTP/1.1" 200 31000 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=8" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:22 +0300] "GET /assets/cd83ad4b/css/AdminLTE.min.css HTTP/1.1" 200 106549 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=8" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:22 +0300] "GET /assets/cd83ad4b/css/skins/_all-skins.min.css HTTP/1.1" 200 41635 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=8" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:22 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 200 7070 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=8" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:22 +0300] "GET /assets/ccdf1f3a/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 77160 "http://backend.guild.loc/assets/ccdf1f3a/css/font-awesome.min.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:22 +0300] "GET /debug/default/toolbar?tag=620b5e0d94a98 HTTP/1.1" 200 3419 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=8" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:22 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=8" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:27 +0300] "GET / HTTP/1.1" 200 16151 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=8" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:28 +0300] "GET /assets/5b57ee2f/css/select2-addl.css HTTP/1.1" 200 994 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:28 +0300] "GET /assets/39b83f70/css/select2.css HTTP/1.1" 200 17358 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:28 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:28 +0300] "GET /css/site.css HTTP/1.1" 200 805 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:28 +0300] "GET /assets/ccdf1f3a/css/font-awesome.min.css HTTP/1.1" 200 31000 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:28 +0300] "GET /assets/5b57ee2f/css/select2-krajee.css HTTP/1.1" 200 20817 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:28 +0300] "GET /assets/bae3a4f/css/kv-widgets.css HTTP/1.1" 200 813 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:28 +0300] "GET / HTTP/1.1" 200 16151 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:28 +0300] "GET /assets/cd83ad4b/css/AdminLTE.min.css HTTP/1.1" 200 106549 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:28 +0300] "GET /assets/cd83ad4b/css/skins/_all-skins.min.css HTTP/1.1" 200 41635 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:28 +0300] "GET /media/upload/HarleyQuinn.jpg HTTP/1.1" 404 12883 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:28 +0300] "GET /assets/bae3a4f/img/loading-plugin.gif HTTP/1.1" 200 847 "http://backend.guild.loc/assets/bae3a4f/css/kv-widgets.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:28 +0300] "GET / HTTP/1.1" 200 16151 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:28 +0300] "GET /assets/ccdf1f3a/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 32768 "http://backend.guild.loc/assets/ccdf1f3a/css/font-awesome.min.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:28 +0300] "GET /media/upload/HarleyQuinn.jpg HTTP/1.1" 404 12884 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:28 +0300] "GET /debug/default/toolbar?tag=620b5e13c2082 HTTP/1.1" 200 3416 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:29 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:44 +0300] "GET /gii/ HTTP/1.1" 200 8183 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:44 +0300] "GET /assets/7e18d02c/main.css HTTP/1.1" 200 4936 "http://guild.loc/gii/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:44 +0300] "GET /assets/7e18d02c/logo.png HTTP/1.1" 200 6677 "http://guild.loc/gii/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:44 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 32768 "http://guild.loc/gii/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:44 +0300] "GET /assets/b1e9395/typeahead.bundle.js HTTP/1.1" 200 96186 "http://guild.loc/gii/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:44 +0300] "GET /assets/7e18d02c/gii.js HTTP/1.1" 200 12755 "http://guild.loc/gii/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:44 +0300] "GET /debug/default/toolbar?tag=620b5e23f3a04 HTTP/1.1" 200 3390 "http://guild.loc/gii/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:44 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://guild.loc/gii/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:46 +0300] "GET /gii/model HTTP/1.1" 200 11759 "http://guild.loc/gii/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:47 +0300] "GET /assets/71772193/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 200 18028 "http://guild.loc/assets/71772193/css/bootstrap.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:47 +0300] "GET /debug/default/toolbar?tag=620b5e26c0b53 HTTP/1.1" 200 3391 "http://guild.loc/gii/model" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:02:47 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://guild.loc/gii/model" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:03:03 +0300] "POST /gii/model HTTP/1.1" 200 12866 "http://guild.loc/gii/model" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:03:03 +0300] "GET /debug/default/toolbar?tag=620b5e3738452 HTTP/1.1" 200 3396 "http://guild.loc/gii/model" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:03:04 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://guild.loc/gii/model" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:03:06 +0300] "POST /gii/default/diff?id=model&file=902e1723a3a2c7ddb711233df3a0be82 HTTP/1.1" 200 4192 "http://guild.loc/gii/model" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:03:56 +0300] "GET /gii/crud HTTP/1.1" 200 10331 "http://guild.loc/gii/model" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:03:57 +0300] "GET /debug/default/toolbar?tag=620b5e6cca5a5 HTTP/1.1" 200 3392 "http://guild.loc/gii/crud" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:03:57 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://guild.loc/gii/crud" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:04:59 +0300] "POST /gii/crud HTTP/1.1" 200 10474 "http://guild.loc/gii/crud" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:05:00 +0300] "GET /debug/default/toolbar?tag=620b5eabd948d HTTP/1.1" 200 3387 "http://guild.loc/gii/crud" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:05:00 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://guild.loc/gii/crud" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:05:22 +0300] "POST /gii/crud HTTP/1.1" 200 10475 "http://guild.loc/gii/crud" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:05:22 +0300] "GET /debug/default/toolbar?tag=620b5ec242ba6 HTTP/1.1" 200 3390 "http://guild.loc/gii/crud" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:05:22 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://guild.loc/gii/crud" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:05:47 +0300] "POST /gii/crud HTTP/1.1" 200 11979 "http://guild.loc/gii/crud" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:05:47 +0300] "GET /debug/default/toolbar?tag=620b5edb47eb9 HTTP/1.1" 200 3390 "http://guild.loc/gii/crud" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:06:38 +0300] "GET /reports/reports/index?id=2 HTTP/1.1" 200 9332 "http://guild.loc/reports/reports/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:06:38 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://guild.loc/reports/reports/index?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:06:38 +0300] "GET /css/site.css HTTP/1.1" 200 2011 "http://guild.loc/reports/reports/index?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:06:38 +0300] "GET /js/site.js HTTP/1.1" 200 596 "http://guild.loc/reports/reports/index?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:06:39 +0300] "GET /assets/71772193/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 200 18028 "http://guild.loc/assets/71772193/css/bootstrap.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:06:39 +0300] "GET /debug/default/toolbar?tag=620b5f0e8ab52 HTTP/1.1" 200 3404 "http://guild.loc/reports/reports/index?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:06:39 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://guild.loc/reports/reports/index?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:06:46 +0300] "POST /gii/default/preview?id=crud&file=0782a5914bdf26f333d946fc44dffdff HTTP/1.1" 200 1753 "http://guild.loc/gii/crud" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:06:57 +0300] "POST /gii/default/preview?id=crud&file=01899468850e194cfa5652f6d9165478 HTTP/1.1" 200 1369 "http://guild.loc/gii/crud" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:09:17 +0300] "POST /gii/default/preview?id=crud&file=0782a5914bdf26f333d946fc44dffdff HTTP/1.1" 200 1753 "http://guild.loc/gii/crud" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:10:00 +0300] "GET /questionnaire/user-questionnaire HTTP/1.1" 200 15273 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=8" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:10:00 +0300] "GET /debug/default/toolbar?tag=620b5fd85bffc HTTP/1.1" 200 3428 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:10:00 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:10:24 +0300] "GET /questionnaire/user-questionnaire HTTP/1.1" 200 15317 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=8" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:10:24 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:10:24 +0300] "GET /css/site.css HTTP/1.1" 200 805 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:10:24 +0300] "GET /assets/ccdf1f3a/css/font-awesome.min.css HTTP/1.1" 200 31000 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:10:24 +0300] "GET /assets/cd83ad4b/css/AdminLTE.min.css HTTP/1.1" 200 106549 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:10:24 +0300] "GET /assets/cd83ad4b/css/skins/_all-skins.min.css HTTP/1.1" 200 41635 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:10:24 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 200 13611 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:10:24 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 200 75484 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:10:24 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 200 288580 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:10:24 +0300] "GET /assets/27128343/yii.gridView.js HTTP/1.1" 200 9507 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:10:24 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 200 20934 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:10:24 +0300] "GET /js/site.js HTTP/1.1" 200 1214 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:10:25 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 200 7070 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:10:25 +0300] "GET /assets/ccdf1f3a/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 77160 "http://backend.guild.loc/assets/ccdf1f3a/css/font-awesome.min.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:10:25 +0300] "GET /debug/default/toolbar?tag=620b5ff0ada09 HTTP/1.1" 200 3428 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:10:25 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:12:37 +0300] "GET /questionnaire/user-questionnaire/create HTTP/1.1" 200 14556 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:12:37 +0300] "GET /assets/bae3a4f/css/kv-widgets.css HTTP/1.1" 200 813 "http://backend.guild.loc/questionnaire/user-questionnaire/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:12:37 +0300] "GET /assets/69f58a44/css/dependent-dropdown.css HTTP/1.1" 200 518 "http://backend.guild.loc/questionnaire/user-questionnaire/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:12:37 +0300] "GET /assets/f3677068/js/depdrop.js HTTP/1.1" 200 986 "http://backend.guild.loc/questionnaire/user-questionnaire/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:12:37 +0300] "GET /assets/69f58a44/js/dependent-dropdown.js HTTP/1.1" 200 11899 "http://backend.guild.loc/questionnaire/user-questionnaire/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:12:37 +0300] "GET /debug/default/toolbar?tag=620b6075109d2 HTTP/1.1" 200 3423 "http://backend.guild.loc/questionnaire/user-questionnaire/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:12:37 +0300] "GET /assets/ccdf1f3a/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 77160 "http://backend.guild.loc/assets/ccdf1f3a/css/font-awesome.min.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:12:37 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-questionnaire/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:12:39 +0300] "GET /assets/69f58a44/img/loading.gif HTTP/1.1" 200 1849 "http://backend.guild.loc/assets/69f58a44/css/dependent-dropdown.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:12:39 +0300] "POST /questionnaire/user-questionnaire/questionnaire HTTP/1.1" 200 230 "http://backend.guild.loc/questionnaire/user-questionnaire/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:12:43 +0300] "GET /assets/5b57ee2f/css/search.png HTTP/1.1" 200 269 "http://backend.guild.loc/assets/5b57ee2f/css/select2-krajee.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:12:43 +0300] "GET /assets/5b57ee2f/css/loading.gif HTTP/1.1" 200 1737 "http://backend.guild.loc/assets/5b57ee2f/css/select2-krajee.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:12:51 +0300] "POST /questionnaire/user-questionnaire/create HTTP/1.1" 302 5 "http://backend.guild.loc/questionnaire/user-questionnaire/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:12:51 +0300] "GET /questionnaire/user-questionnaire/view?id=10 HTTP/1.1" 200 13955 "http://backend.guild.loc/questionnaire/user-questionnaire/create" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:12:51 +0300] "GET /debug/default/toolbar?tag=620b60831745c HTTP/1.1" 200 3418 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=10" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:12:57 +0300] "GET /questionnaire/user-questionnaire/index HTTP/1.1" 200 15422 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=10" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:12:57 +0300] "GET /debug/default/toolbar?tag=620b608919eae HTTP/1.1" 200 3429 "http://backend.guild.loc/questionnaire/user-questionnaire/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:13:20 +0300] "POST /gii/default/preview?id=crud&file=719ec4677720951a94daa6c6df0f2169 HTTP/1.1" 200 781 "http://guild.loc/gii/crud" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:14:55 +0300] "GET /questionnaire/user-questionnaire/index HTTP/1.1" 200 15424 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=10" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:14:55 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:14:55 +0300] "GET /js/site.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:14:55 +0300] "GET /assets/27128343/yii.gridView.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:14:55 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:14:55 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:14:55 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:14:55 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:14:55 +0300] "GET /debug/default/toolbar?tag=620b60ff1cda9 HTTP/1.1" 200 3429 "http://backend.guild.loc/questionnaire/user-questionnaire/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:14:57 +0300] "GET /questionnaire/user-questionnaire/view?id=1 HTTP/1.1" 200 14930 "http://backend.guild.loc/questionnaire/user-questionnaire/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:14:58 +0300] "GET /debug/default/toolbar?tag=620b610166949 HTTP/1.1" 200 3413 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:15:12 +0300] "GET /questionnaire/user-questionnaire/index HTTP/1.1" 200 15425 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=10" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:15:12 +0300] "GET /debug/default/toolbar?tag=620b61100bc5a HTTP/1.1" 200 3428 "http://backend.guild.loc/questionnaire/user-questionnaire/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:15:26 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 1113 "-" "PostmanRuntime/7.28.4"
+127.0.0.1 - - [15/Feb/2022:11:16:12 +0300] "GET /questionnaire/user-questionnaire/update?id=1 HTTP/1.1" 200 14557 "http://backend.guild.loc/questionnaire/user-questionnaire/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:16:13 +0300] "GET /debug/default/toolbar?tag=620b614ca5dc8 HTTP/1.1" 200 3420 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:16:33 +0300] "GET /questionnaire/user-questionnaire/index HTTP/1.1" 200 15425 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=10" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:16:33 +0300] "GET /debug/default/toolbar?tag=620b61615e304 HTTP/1.1" 200 3428 "http://backend.guild.loc/questionnaire/user-questionnaire/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:16:54 +0300] "GET /questionnaire/user-questionnaire/view?id=1 HTTP/1.1" 200 14932 "http://backend.guild.loc/questionnaire/user-questionnaire/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:16:55 +0300] "GET /debug/default/toolbar?tag=620b6176d2d04 HTTP/1.1" 200 3412 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:16:58 +0300] "GET /questionnaire/user-questionnaire/index HTTP/1.1" 200 15423 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=10" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:16:58 +0300] "GET /debug/default/toolbar?tag=620b617a72000 HTTP/1.1" 200 3428 "http://backend.guild.loc/questionnaire/user-questionnaire/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:17:00 +0300] "GET /questionnaire/user-questionnaire/view?id=1 HTTP/1.1" 200 14929 "http://backend.guild.loc/questionnaire/user-questionnaire/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:17:00 +0300] "GET /debug/default/toolbar?tag=620b617c34bab HTTP/1.1" 200 3412 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:17:01 +0300] "GET /questionnaire/user-questionnaire/update?id=1 HTTP/1.1" 200 14558 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:17:01 +0300] "GET /debug/default/toolbar?tag=620b617d71d48 HTTP/1.1" 200 3420 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:17:10 +0300] "GET /questionnaire/question-type HTTP/1.1" 200 14534 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:17:10 +0300] "GET /debug/default/toolbar?tag=620b61864b7e6 HTTP/1.1" 200 3417 "http://backend.guild.loc/questionnaire/question-type" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:17:13 +0300] "GET /questionnaire/question-type/update?id=1 HTTP/1.1" 200 13206 "http://backend.guild.loc/questionnaire/question-type" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:17:13 +0300] "GET /debug/default/toolbar?tag=620b61891a059 HTTP/1.1" 200 3418 "http://backend.guild.loc/questionnaire/question-type/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:17:14 +0300] "GET /questionnaire/question-type HTTP/1.1" 200 14532 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:17:15 +0300] "GET /debug/default/toolbar?tag=620b618aea7d6 HTTP/1.1" 200 3418 "http://backend.guild.loc/questionnaire/question-type" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:17:16 +0300] "GET /questionnaire/questionnaire-category HTTP/1.1" 200 14409 "http://backend.guild.loc/questionnaire/question-type" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:17:16 +0300] "GET /debug/default/toolbar?tag=620b618c88acb HTTP/1.1" 200 3421 "http://backend.guild.loc/questionnaire/questionnaire-category" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:17:19 +0300] "GET /questionnaire/user-questionnaire HTTP/1.1" 200 15418 "http://backend.guild.loc/questionnaire/questionnaire-category" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:17:19 +0300] "GET /debug/default/toolbar?tag=620b618f045c7 HTTP/1.1" 200 3429 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:17:20 +0300] "GET /questionnaire/user-questionnaire/update?id=1 HTTP/1.1" 200 14561 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:17:21 +0300] "GET /debug/default/toolbar?tag=620b6190b336b HTTP/1.1" 200 3420 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:23:52 +0300] "GET /questionnaire/user-questionnaire/update?id=1 HTTP/1.1" 500 121281 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:23:52 +0300] "GET /debug/default/toolbar?tag=620b6318558c6 HTTP/1.1" 200 3434 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:23:52 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:40 +0300] "GET /questionnaire/user-questionnaire/update?id=1 HTTP/1.1" 500 121311 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:40 +0300] "GET /debug/default/toolbar?tag=620b63c00935c HTTP/1.1" 200 3433 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:40 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:46 +0300] "GET /questionnaire/user-questionnaire/update?id=1 HTTP/1.1" 200 14573 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:46 +0300] "GET /assets/69f58a44/css/dependent-dropdown.css HTTP/1.1" 200 518 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:46 +0300] "GET /assets/bae3a4f/css/kv-widgets.css HTTP/1.1" 200 813 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:46 +0300] "GET /assets/39b83f70/css/select2.css HTTP/1.1" 200 17358 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:46 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:46 +0300] "GET /css/site.css HTTP/1.1" 200 805 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:46 +0300] "GET /assets/5b57ee2f/css/select2-krajee.css HTTP/1.1" 200 20817 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:46 +0300] "GET /assets/5b57ee2f/css/select2-addl.css HTTP/1.1" 200 994 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:46 +0300] "GET /assets/ccdf1f3a/css/font-awesome.min.css HTTP/1.1" 200 31000 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:46 +0300] "GET /assets/27128343/yii.validation.js HTTP/1.1" 200 16405 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:46 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 200 288580 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:46 +0300] "GET /assets/f3677068/js/depdrop.js HTTP/1.1" 200 986 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:46 +0300] "GET /assets/cd83ad4b/css/AdminLTE.min.css HTTP/1.1" 200 106549 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:46 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 200 20934 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:46 +0300] "GET /assets/69f58a44/js/dependent-dropdown.js HTTP/1.1" 200 11899 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:46 +0300] "GET /assets/cd83ad4b/css/skins/_all-skins.min.css HTTP/1.1" 200 41635 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:46 +0300] "GET /assets/39b83f70/js/select2.full.js HTTP/1.1" 200 173566 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:46 +0300] "GET /assets/bae3a4f/js/kv-widgets.js HTTP/1.1" 200 1061 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:46 +0300] "GET /assets/39b83f70/js/i18n/ru.js HTTP/1.1" 200 1171 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:46 +0300] "GET /assets/27128343/yii.activeForm.js HTTP/1.1" 200 36765 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:46 +0300] "GET /assets/5b57ee2f/js/select2-krajee.js HTTP/1.1" 200 7344 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:46 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 200 75484 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:46 +0300] "GET /js/site.js HTTP/1.1" 200 1214 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:46 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 200 13611 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:46 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 200 7070 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:47 +0300] "GET /debug/default/toolbar?tag=620b63c686c18 HTTP/1.1" 200 3420 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:47 +0300] "GET /assets/bae3a4f/img/loading-plugin.gif HTTP/1.1" 200 847 "http://backend.guild.loc/assets/bae3a4f/css/kv-widgets.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:47 +0300] "GET /assets/ccdf1f3a/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 77160 "http://backend.guild.loc/assets/ccdf1f3a/css/font-awesome.min.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:47 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:52 +0300] "GET /assets/69f58a44/img/loading.gif HTTP/1.1" 200 1849 "http://backend.guild.loc/assets/69f58a44/css/dependent-dropdown.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
+127.0.0.1 - - [15/Feb/2022:11:26:52 +0300] "POST /questionnaire/user-questionnaire/questionnaire HTTP/1.1" 200 230 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0"
diff --git a/frontend-error.log b/frontend-error.log
index 3cc9550..106de24 100644
--- a/frontend-error.log
+++ b/frontend-error.log
@@ -15419,3 +15419,172 @@ Stack trace:
2022/01/16 23:24:17 [error] 717#717: *493 FastCGI sent in stderr: "PHP message: PHP Warning: Use of undefined constant IMG_GIF - assumed 'IMG_GIF' (this will throw an Error in a future version of PHP) in /var/www/guild.loc/common/config/main.php on line 42PHP message: PHP Warning: Use of undefined constant IMG_JPG - assumed 'IMG_JPG' (this will throw an Error in a future version of PHP) in /var/www/guild.loc/common/config/main.php on line 42PHP message: PHP Warning: Use of undefined constant IMG_PNG - assumed 'IMG_PNG' (this will throw an Error in a future version of PHP) in /var/www/guild.loc/common/config/main.php on line 42PHP message: PHP Warning: Use of undefined constant IMG_WBMP - assumed 'IMG_WBMP' (this will throw an Error in a future version of PHP) in /var/www/guild.loc/common/config/main.php on line 42PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/task/create-task HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
2022/01/16 23:32:38 [error] 717#717: *497 FastCGI sent in stderr: "PHP message: PHP Warning: Use of undefined constant IMG_GIF - assumed 'IMG_GIF' (this will throw an Error in a future version of PHP) in /var/www/guild.loc/common/config/main.php on line 42PHP message: PHP Warning: Use of undefined constant IMG_JPG - assumed 'IMG_JPG' (this will throw an Error in a future version of PHP) in /var/www/guild.loc/common/config/main.php on line 42PHP message: PHP Warning: Use of undefined constant IMG_PNG - assumed 'IMG_PNG' (this will throw an Error in a future version of PHP) in /var/www/guild.loc/common/config/main.php on line 42PHP message: PHP Warning: Use of undefined constant IMG_WBMP - assumed 'IMG_WBMP' (this will throw an Error in a future version of PHP) in /var/www/guild.loc/common/config/main.php on line 42PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/task/create-task HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
2022/01/16 23:38:09 [error] 717#717: *499 FastCGI sent in stderr: "PHP message: PHP Warning: Use of undefined constant IMG_GIF - assumed 'IMG_GIF' (this will throw an Error in a future version of PHP) in /var/www/guild.loc/common/config/main.php on line 42PHP message: PHP Warning: Use of undefined constant IMG_JPG - assumed 'IMG_JPG' (this will throw an Error in a future version of PHP) in /var/www/guild.loc/common/config/main.php on line 42PHP message: PHP Warning: Use of undefined constant IMG_PNG - assumed 'IMG_PNG' (this will throw an Error in a future version of PHP) in /var/www/guild.loc/common/config/main.php on line 42PHP message: PHP Warning: Use of undefined constant IMG_WBMP - assumed 'IMG_WBMP' (this will throw an Error in a future version of PHP) in /var/www/guild.loc/common/config/main.php on line 42PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/task/update HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 15:07:20 [error] 10385#10385: *101 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 15:07:21 [error] 10385#10385: *101 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /site/login HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 15:07:21 [error] 10382#10382: *105 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a45f8eb722 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:07:25 [error] 10382#10382: *105 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /site/login HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:07:26 [error] 10382#10382: *105 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a45fd8b290 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:26:27 [error] 10385#10385: *155 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 15:26:27 [error] 10385#10385: *155 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /site/login HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 15:26:27 [error] 10385#10385: *155 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4a7381f17 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:26:52 [error] 10385#10385: *155 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /site/login HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:26:53 [error] 10385#10385: *155 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4a8cd85f7 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:26:57 [error] 10385#10385: *155 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /site/login HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:26:57 [error] 10385#10385: *155 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4a9171290 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:26:59 [error] 10385#10385: *155 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /site/login HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:26:59 [error] 10385#10385: *155 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4a93816a7 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:27:01 [error] 10385#10385: *155 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /site/signup HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:27:01 [error] 10385#10385: *155 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4a9535fd6 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/signup"
+2022/02/14 15:27:25 [error] 10385#10385: *155 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /site/signup HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/signup"
+2022/02/14 15:27:25 [error] 10385#10385: *155 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/signup"
+2022/02/14 15:27:26 [error] 10385#10385: *155 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4aadd18aa HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/"
+2022/02/14 15:27:29 [error] 10385#10385: *155 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /reports/reports/index HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/"
+2022/02/14 15:27:30 [error] 10385#10385: *155 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4ab1cec64 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/index"
+2022/02/14 15:27:32 [error] 10385#10385: *155 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /reports/reports/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/index"
+2022/02/14 15:27:32 [error] 10385#10385: *173 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4ab4507bf HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/create"
+2022/02/14 15:28:08 [error] 10385#10385: *173 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /reports/reports/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/create"
+2022/02/14 15:28:20 [error] 10385#10385: *173 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /reports/reports/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/index"
+2022/02/14 15:28:20 [error] 10385#10385: *173 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4ae444e8c HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/create"
+2022/02/14 15:32:27 [error] 10385#10385: *200 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /site/logout HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/create"
+2022/02/14 15:32:27 [error] 10385#10385: *200 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/create"
+2022/02/14 15:32:27 [error] 10385#10385: *200 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /site/login HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/create"
+2022/02/14 15:32:27 [error] 10385#10385: *200 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4bdb313d3 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:32:28 [error] 10385#10385: *200 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /site/login HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:32:29 [error] 10385#10385: *200 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4bdc95713 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:32:41 [error] 10385#10385: *200 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /site/login HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:32:42 [error] 10385#10385: *200 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4be9c31e2 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:32:47 [error] 10385#10385: *200 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /site/signup HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:32:47 [error] 10385#10385: *200 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4bef1a45e HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/signup"
+2022/02/14 15:33:07 [error] 10385#10385: *200 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /site/signup HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/signup"
+2022/02/14 15:33:07 [error] 10385#10385: *200 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/signup"
+2022/02/14 15:33:07 [error] 10385#10385: *200 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4c034d36b HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/"
+2022/02/14 15:33:14 [error] 10385#10385: *200 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /reports/reports/index HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/"
+2022/02/14 15:33:15 [error] 10385#10385: *200 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4c0aca8a2 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/index"
+2022/02/14 15:33:17 [error] 10385#10385: *200 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /site/index HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/index"
+2022/02/14 15:33:17 [error] 10385#10385: *200 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4c0d02b7d HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/index"
+2022/02/14 15:33:18 [error] 10385#10385: *200 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /access/access/index HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/index"
+2022/02/14 15:33:18 [error] 10385#10385: *200 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4c0defb1e HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/access/access/index"
+2022/02/14 15:33:21 [error] 10385#10385: *200 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /reports/reports/index HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/access/access/index"
+2022/02/14 15:33:22 [error] 10385#10385: *200 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4c11ec4d6 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/index"
+2022/02/14 15:35:21 [error] 10385#10385: *228 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /site/logout HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/index"
+2022/02/14 15:35:22 [error] 10385#10385: *228 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/index"
+2022/02/14 15:35:22 [error] 10385#10385: *228 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /site/login HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/index"
+2022/02/14 15:35:22 [error] 10385#10385: *228 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4c8a0fc7e HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:35:29 [error] 10385#10385: *228 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /site/login HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:35:29 [error] 10385#10385: *228 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4c901bc0e HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:35:40 [error] 10385#10385: *228 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /site/login HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:35:40 [error] 10385#10385: *228 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4c9b688c4 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:35:47 [error] 10385#10385: *228 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /site/login HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:35:47 [error] 10385#10385: *228 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4ca237c1e HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:36:01 [error] 10385#10385: *228 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /site/login HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:36:02 [error] 10385#10385: *228 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4cb0af173 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:40:09 [error] 10385#10385: *253 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /site/login HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:40:09 [error] 10385#10385: *253 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login"
+2022/02/14 15:40:09 [error] 10385#10385: *253 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4da97ce26 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/"
+2022/02/14 15:40:18 [error] 10385#10385: *253 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /reports/reports/index HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/"
+2022/02/14 15:40:18 [error] 10385#10385: *253 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4db28cbb3 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/index"
+2022/02/14 15:40:20 [error] 10385#10385: *253 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /reports/reports/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/index"
+2022/02/14 15:40:20 [error] 10385#10385: *264 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4db44b1ed HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/create"
+2022/02/14 15:40:33 [error] 10385#10385: *264 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /reports/reports/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/create"
+2022/02/14 15:40:33 [error] 10385#10385: *264 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /reports/reports/view?id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/create"
+2022/02/14 15:40:33 [error] 10385#10385: *264 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4dc17e9fd HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/view?id=1"
+2022/02/14 15:40:35 [error] 10385#10385: *264 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /reports/reports/index?id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/view?id=1"
+2022/02/14 15:40:36 [error] 10385#10385: *264 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4dc3ed226 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/index?id=1"
+2022/02/14 15:40:40 [error] 10385#10385: *264 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /reports/reports/view?id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/index?id=1"
+2022/02/14 15:40:40 [error] 10385#10385: *264 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4dc842e85 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/view?id=1"
+2022/02/14 15:40:47 [error] 10385#10385: *264 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /reports/reports/index?id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/view?id=1"
+2022/02/14 15:40:47 [error] 10385#10385: *264 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4dcf740b3 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/index?id=1"
+2022/02/14 15:43:10 [error] 10385#10385: *275 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /reports/reports/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/index?id=1"
+2022/02/14 15:43:10 [error] 10385#10385: *275 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4e5e5ca6c HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/create"
+2022/02/14 15:43:50 [error] 10385#10385: *275 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /reports/reports/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/create"
+2022/02/14 15:43:50 [error] 10385#10385: *275 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /reports/reports/view?id=2 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/create"
+2022/02/14 15:43:50 [error] 10385#10385: *275 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4e866ed3d HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/view?id=2"
+2022/02/14 15:44:19 [error] 10385#10385: *275 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /reports/reports/index?id=2 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/view?id=2"
+2022/02/14 15:44:19 [error] 10385#10385: *275 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a4ea31ebce HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/index?id=2"
+2022/02/14 15:51:05 [error] 10385#10385: *284 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /reports/reports/index?id=2 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/view?id=2"
+2022/02/14 15:51:05 [error] 10385#10385: *284 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a5039067ab HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/index?id=2"
+2022/02/14 16:02:42 [error] 10385#10385: *337 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user/login?login=testUser HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:02:55 [error] 10385#10385: *337 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:05:16 [error] 10385#10385: *340 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/question/get-questions?uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:06:43 [error] 10385#10385: *353 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:14:11 [error] 10385#10385: *355 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:15:29 [error] 10385#10385: *357 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:16:32 [error] 10385#10385: *357 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:16:48 [error] 10385#10385: *357 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:17:31 [error] 10385#10385: *357 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:17:54 [error] 10385#10385: *357 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/question/get-questions?uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:18:07 [error] 10385#10385: *357 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/answer/get-answers?question_id=7 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:18:23 [error] 10385#10385: *357 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/task-user/get-task-users?task_id=11 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:18:37 [error] 10385#10385: *357 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/profile?id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:18:52 [error] 10385#10385: *357 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/document-field-value/document-field-value-list?document_id=31 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:19:02 [error] 10385#10385: *357 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/document/get-document-list?document_type=3 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:19:11 [error] 10385#10385: *357 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/document/get-document?document_id=880 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:19:25 [error] 10385#10385: *357 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/document-field-value/document-field-value-list?document_id=31 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:19:32 [error] 10385#10385: *357 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/document-field-value/document-field-value-list?document_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:20:57 [error] 10385#10385: *371 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:21:35 [error] 10385#10385: *371 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:22:30 [error] 10385#10385: *371 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:22:42 [error] 10385#10385: *371 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:22:52 [error] 10385#10385: *371 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:23:23 [error] 10385#10385: *371 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:23:42 [error] 10385#10385: *371 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:24:20 [error] 10385#10385: *371 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:25:17 [error] 10385#10385: *371 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:26:01 [error] 10385#10385: *371 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:26:13 [error] 10385#10385: *371 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:26:42 [error] 10385#10385: *371 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:27:44 [error] 10385#10385: *371 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:28:33 [error] 10385#10385: *371 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:32:50 [error] 10385#10385: *389 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:33:06 [error] 10385#10385: *389 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:33:34 [error] 10385#10385: *389 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:37:13 [error] 10385#10385: *393 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:41:14 [error] 10385#10385: *395 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:41:40 [error] 10385#10385: *395 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:42:30 [error] 10385#10385: *395 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+ 2022/02/14 16:49:04 [error] 734#734: *1 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:49:58 [error] 734#734: *1 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:50:24 [error] 734#734: *1 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:51:00 [error] 734#734: *1 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:51:24 [error] 734#734: *1 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:52:07 [error] 734#734: *7 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /reports/reports/index?id=2 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/view?id=2"
+2022/02/14 16:52:07 [error] 734#734: *7 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620a5e874b326 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/index?id=2"
+2022/02/14 16:57:01 [error] 734#734: *19 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:57:17 [error] 734#734: *19 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 16:58:39 [error] 734#734: *22 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 17:00:59 [error] 734#734: *24 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 17:01:35 [error] 734#734: *24 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 17:08:40 [error] 734#734: *27 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 17:09:17 [error] 734#734: *27 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 17:09:36 [error] 734#734: *27 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 17:11:49 [error] 734#734: *31 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 17:14:41 [error] 734#734: *33 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 17:16:24 [error] 734#734: *35 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/14 17:16:45 [error] 734#734: *35 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/15 10:34:07 [error] 745#745: *1 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/15 10:35:07 [error] 745#745: *1 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/15 10:35:28 [error] 745#745: *1 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/15 10:36:49 [error] 745#745: *5 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/15 10:37:13 [error] 745#745: *5 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/15 11:02:44 [error] 745#745: *21 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /gii/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
+2022/02/15 11:02:44 [error] 745#745: *23 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620b5e23f3a04 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/gii/"
+2022/02/15 11:02:46 [error] 745#745: *23 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /gii/model HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/gii/"
+2022/02/15 11:02:47 [error] 745#745: *23 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620b5e26c0b53 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/gii/model"
+2022/02/15 11:03:03 [error] 748#748: *24 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /gii/model HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/gii/model"
+2022/02/15 11:03:03 [error] 748#748: *24 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620b5e3738452 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/gii/model"
+2022/02/15 11:03:06 [error] 748#748: *24 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /gii/default/diff?id=model&file=902e1723a3a2c7ddb711233df3a0be82 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/gii/model"
+2022/02/15 11:03:56 [error] 748#748: *24 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /gii/crud HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/gii/model"
+2022/02/15 11:03:57 [error] 748#748: *24 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620b5e6cca5a5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/gii/crud"
+2022/02/15 11:04:59 [error] 748#748: *24 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /gii/crud HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/gii/crud"
+2022/02/15 11:05:00 [error] 748#748: *24 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620b5eabd948d HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/gii/crud"
+2022/02/15 11:05:22 [error] 748#748: *24 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /gii/crud HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/gii/crud"
+2022/02/15 11:05:22 [error] 748#748: *24 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620b5ec242ba6 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/gii/crud"
+2022/02/15 11:05:47 [error] 745#745: *37 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /gii/crud HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/gii/crud"
+2022/02/15 11:05:47 [error] 745#745: *37 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620b5edb47eb9 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/gii/crud"
+2022/02/15 11:06:38 [error] 745#745: *37 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /reports/reports/index?id=2 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/view?id=2"
+2022/02/15 11:06:39 [error] 745#745: *37 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=620b5f0e8ab52 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/index?id=2"
+2022/02/15 11:06:46 [error] 745#745: *43 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /gii/default/preview?id=crud&file=0782a5914bdf26f333d946fc44dffdff HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/gii/crud"
+2022/02/15 11:06:56 [error] 745#745: *43 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /gii/default/preview?id=crud&file=01899468850e194cfa5652f6d9165478 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/gii/crud"
+2022/02/15 11:09:17 [error] 745#745: *46 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /gii/default/preview?id=crud&file=0782a5914bdf26f333d946fc44dffdff HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/gii/crud"
+2022/02/15 11:13:20 [error] 745#745: *71 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /gii/default/preview?id=crud&file=719ec4677720951a94daa6c6df0f2169 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/gii/crud"
+2022/02/15 11:15:26 [error] 745#745: *85 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc"
diff --git a/frontend/modules/api/controllers/UserQuestionnaireController.php b/frontend/modules/api/controllers/UserQuestionnaireController.php
index 5ea2436..5690ed0 100644
--- a/frontend/modules/api/controllers/UserQuestionnaireController.php
+++ b/frontend/modules/api/controllers/UserQuestionnaireController.php
@@ -31,7 +31,7 @@ class UserQuestionnaireController extends Controller
/**
* @throws NotFoundHttpException
*/
- public function actionQuestionnairesList(): array
+ public function actionQuestionnairesList()//: array
{
$user_id = Yii::$app->request->get('user_id');
@@ -40,20 +40,20 @@ class UserQuestionnaireController extends Controller
throw new NotFoundHttpException('Incorrect user ID');
}
- $userQuestionnaireModel = UserQuestionnaire::findActiveUserQuestionnaires($user_id);
- if(empty($userQuestionnaireModel)) {
+ $userQuestionnaireModels = UserQuestionnaire::findActiveUserQuestionnaires($user_id);
+ if(empty($userQuestionnaireModels)) {
throw new NotFoundHttpException('Active questionnaire not found');
}
- array_walk( $userQuestionnaireModel, function(&$arr){
+ array_walk( $userQuestionnaireModels, function(&$arr){
unset(
$arr['questionnaire_id'],
- $arr['created_at'],
- $arr['updated_at'],
+// $arr['created_at'],
+// $arr['updated_at'],
$arr['id'],
);
});
- return $userQuestionnaireModel;
+ return $userQuestionnaireModels;
}
}