Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
caisar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
caisar
Commits
c56b4f16
Commit
c56b4f16
authored
1 year ago
by
Michele Alberti
Browse files
Options
Downloads
Patches
Plain Diff
[log] Rework source printing: print a space only for non-app logs.
parent
2e3169a2
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/logging.ml
+5
-4
5 additions, 4 deletions
src/logging.ml
with
5 additions
and
4 deletions
src/logging.ml
+
5
−
4
View file @
c56b4f16
...
@@ -42,13 +42,14 @@ let reporter =
...
@@ -42,13 +42,14 @@ let reporter =
in
in
msgf
@@
fun
?
header
?
tags
:_
fmt
->
msgf
@@
fun
?
header
?
tags
:_
fmt
->
let
ppf
=
if
level
=
Logs
.
App
then
Fmt
.
stdout
else
Fmt
.
stderr
in
let
ppf
=
if
level
=
Logs
.
App
then
Fmt
.
stdout
else
Fmt
.
stderr
in
let
print_src
fmt
src
=
let
pp_src
fmt
src
=
if
not
(
Logs
.
Src
.
equal
Logs
.
default
src
)
if
Logs
.
Src
.
equal
Logs
.
default
src
then
Fmt
.
pf
fmt
"@[{%s}@] "
(
Logs
.
Src
.
name
src
)
then
(
if
level
<>
Logs
.
App
then
Fmt
.
pf
fmt
" "
)
else
Fmt
.
pf
fmt
"@[{%s}@] "
(
Logs
.
Src
.
name
src
)
in
in
Format
.
kfprintf
k
ppf
Format
.
kfprintf
k
ppf
(
"%a%a@["
^^
fmt
^^
"@]@."
)
(
"%a%a@["
^^
fmt
^^
"@]@."
)
Logs
.
pp_header
(
level
,
header
)
p
rint
_src
src
Logs
_fmt
.
pp_header
(
level
,
header
)
p
p
_src
src
in
in
{
Logs
.
report
}
{
Logs
.
report
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment