You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2019/09/18 19:03:31 UTC

[airavata-django-portal] branch master updated: Change log level when output view provider isn't found

This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git


The following commit(s) were added to refs/heads/master by this push:
     new 0ea5252  Change log level when output view provider isn't found
0ea5252 is described below

commit 0ea5252ebfb3c7a3b557d076cdfb6d5a9ddfc08b
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Wed Sep 18 15:03:21 2019 -0400

    Change log level when output view provider isn't found
---
 django_airavata/apps/api/output_views.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/django_airavata/apps/api/output_views.py b/django_airavata/apps/api/output_views.py
index 05866cc..a2122b4 100644
--- a/django_airavata/apps/api/output_views.py
+++ b/django_airavata/apps/api/output_views.py
@@ -80,8 +80,8 @@ def get_output_views(request, experiment, application_interface=None):
                 output_view_provider = settings.OUTPUT_VIEW_PROVIDERS[
                     output_view_provider_id]
             else:
-                logger.error("Unable to find output view provider with "
-                             "name '{}'".format(output_view_provider_id))
+                logger.warning("Unable to find output view provider with "
+                               "name '{}'".format(output_view_provider_id))
             if output_view_provider is not None:
                 view_config = {
                     'provider-id': output_view_provider_id,