Skip to content

Commit

Permalink
Merge pull request #3650 from rtfd/remove-error-logs
Browse files Browse the repository at this point in the history
Remove error logging that isn't an error.
  • Loading branch information
ericholscher authored Feb 23, 2018
2 parents 5e46cbd + 31db082 commit 0a4a287
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion readthedocs/builds/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def commit_name(self):

# If we came that far it's not a special version nor a branch or tag.
# Therefore just return the identifier to make a safe guess.
log.error('TODO: Raise an exception here. Testing what cases it happens')
log.debug('TODO: Raise an exception here. Testing what cases it happens')
return self.identifier

def get_absolute_url(self):
Expand Down
2 changes: 1 addition & 1 deletion readthedocs/core/views/serve.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def redirect_page_with_filename(request, project, subproject, filename): # pyli
def _serve_401(request, project):
res = render(request, '401.html')
res.status_code = 401
log.error('Unauthorized access to {0} documentation'.format(project.slug))
log.debug('Unauthorized access to {0} documentation'.format(project.slug))
return res


Expand Down
2 changes: 1 addition & 1 deletion readthedocs/projects/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,7 @@ def update_search(version_pk, commit, delete_non_commit_files=True):
if version.project.is_type_sphinx:
page_list = process_all_json_files(version, build_dir=False)
else:
log.error('Unknown documentation type: %s',
log.debug('Unknown documentation type: %s',
version.project.documentation_type)
return

Expand Down

0 comments on commit 0a4a287

Please sign in to comment.