Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cricket-ci
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ACS
Public
Virtualization
cricket-ci
Commits
f61c2a86
Commit
f61c2a86
authored
1 year ago
by
Fritz Stracke
Committed by
Niklas Eiling
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Add colors to gpu/log.c
Signed-off-by:
Niklas Eiling
<
niklas.eiling@eonerc.rwth-aachen.de
>
parent
d29559c9
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
gpu/src/log.c
+11
-1
11 additions, 1 deletion
gpu/src/log.c
with
11 additions
and
1 deletion
gpu/src/log.c
+
11
−
1
View file @
f61c2a86
...
...
@@ -59,7 +59,12 @@ void now_time(char* buf)
const
char
*
to_string
(
log_level
level
)
{
#ifdef NOCOLORS
static
const
char
*
const
buffer
[]
=
{
"ERROR"
,
"WARNING"
,
"INFO"
,
"DEBUG"
};
#else
static
const
char
*
const
buffer
[]
=
{
"
\033
[1m
\033
[31mERROR
\033
[0m"
,
"
\033
[33mWARNING
\033
[0m"
,
"
\033
[34mINFO
\033
[0m"
,
"
\033
[32mDEBUG
\033
[0m"
};
#endif //NOCOLORS
if
(
level
>
LOG_DEBUG
){
return
buffer
[
LOG_DEBUG
];
}
...
...
@@ -90,5 +95,10 @@ void loggfe(log_level level, int line, const char* file, const char* formatstr,
char
stripped
[
64
];
strcpy
(
stripped
,
file
);
str_strip
(
stripped
,
get_log_data
()
->
project_offset
);
printf
(
"
\t
in %s(%d)
\n
"
,
stripped
,
line
);
#ifdef NOCOLORS
printf
(
"
\t
in %s:%d
\n
"
,
stripped
,
line
);
#else
printf
(
"
\t
in
\033
[4m%s:%d
\033
[0m
\n
"
,
stripped
,
line
);
#endif //NOCOLORS
}
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