Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
BlobApi
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Coscine
backend
apis
BlobApi
Merge requests
!55
Fix: Increase Log Level
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Fix: Increase Log Level
Hotfix/1945-weirdUploadBehavior
into
master
Overview
2
Commits
1
Pipelines
2
Changes
1
Merged
Fix: Increase Log Level
Benedikt Heinrichs
requested to merge
Hotfix/1945-weirdUploadBehavior
into
master
Feb 11, 2022
Overview
2
Commits
1
Pipelines
2
Changes
1
coscine/issues#1945
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
7dbba823
1 commit,
Feb 11, 2022
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/Blob/Controllers/BlobController.cs
+
1
−
1
View file @ 7dbba823
Edit in single-file editor
Open in Web IDE
Show full file
@@ -321,7 +321,7 @@ namespace Coscine.Api.Blob.Controllers
}
catch
(
Exception
e
)
{
_coscineLogger
.
Log
(
"Upload File failed"
,
e
);
_coscineLogger
.
Log
(
LogType
.
High
,
"Upload File failed"
,
e
);
return
BadRequest
(
"Error in communication with the resource"
);
}
}
Loading