diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-10-09 10:48:05 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-10-09 10:48:05 +0200 |
commit | db0f7557f165b95b3e3ae61affe4279f0541a673 (patch) | |
tree | 162fb71e56369141346c2ee420a7e8f2b40868cb /server/sonar-web/src/main/webapp | |
parent | 63c73ea8c9539f17bd160b04b3ed946e97b61a53 (diff) | |
download | sonarqube-db0f7557f165b95b3e3ae61affe4279f0541a673.tar.gz sonarqube-db0f7557f165b95b3e3ae61affe4279f0541a673.zip |
SONAR-6830 apply feedback
Diffstat (limited to 'server/sonar-web/src/main/webapp')
-rw-r--r-- | server/sonar-web/src/main/webapp/WEB-INF/app/views/system/_monitor.html.erb | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/server/sonar-web/src/main/webapp/WEB-INF/app/views/system/_monitor.html.erb b/server/sonar-web/src/main/webapp/WEB-INF/app/views/system/_monitor.html.erb index e85aa9cd627..d0aaca67df5 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/app/views/system/_monitor.html.erb +++ b/server/sonar-web/src/main/webapp/WEB-INF/app/views/system/_monitor.html.erb @@ -25,24 +25,7 @@ <% else %> <tr class="<%= cycle('even','odd', :name => monitor.name()) -%>" id="<%= "#{monitor.name()}-#{attribute_key}".parameterize -%>"> <td width="25%" nowrap="nowrap"><%= h attribute_key -%></td> - <td width="75%"> - <% if attribute_key == 'Logs Level' %> - <% - message = '' - css_level = '' - if attribute_value=='TRACE' - css_level = 'alert_ERROR' - message = 'TRACE level has performance impacts, please make sure to get back to INFO level once your investigation is done.' - elsif attribute_value=='DEBUG' - css_level = 'alert_WARN' - message = 'DEBUG level may have performance impacts, please make sure to get back to INFO level once your investigation is done.' - end - %> - <span class="<%= css_level -%>"><%= h attribute_value -%></span> - <% else %> - <%= h attribute_value -%> - <% end %> - </td> + <td width="75%"><%= h attribute_value -%></td> </tr> <% end %> |