Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2014-11-17 05:40:41 +0300
committermattab <matthieu.aubry@gmail.com>2014-11-17 05:40:41 +0300
commit5b545affae8dbe6d7ca3dc3c4383bb7b37510f11 (patch)
treef537aeaa7c45bef9de10fd4d0526a4ea1bedf5bf /plugins
parentbeac44669ce722f56e48efecda11eaf80f6d7a7d (diff)
Error when failing to create a custom variable
Diffstat (limited to 'plugins')
-rw-r--r--plugins/CustomVariables/Model.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CustomVariables/Model.php b/plugins/CustomVariables/Model.php
index ce5ffe8843..d9a0623b40 100644
--- a/plugins/CustomVariables/Model.php
+++ b/plugins/CustomVariables/Model.php
@@ -166,7 +166,7 @@ class Model
$model->addCustomVariable();
}
} catch (\Exception $e) {
- Log::warning('Failed to add custom variable: ' . $e->getMessage());
+ Log::error('Failed to add custom variable: ' . $e->getMessage());
}
}
}