Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
girara
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Packages
Packages
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Johannes Löthberg
girara
Commits
051c20ef
Commit
051c20ef
authored
Jan 06, 2017
by
Sebastian Ramacher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix arguments
Signed-off-by:
Sebastian Ramacher
<
sebastian+dev@ramacher.at
>
parent
67ba3691
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
girara/log.c
girara/log.c
+1
-1
girara/log.h
girara/log.h
+1
-1
No files found.
girara/log.c
View file @
051c20ef
...
...
@@ -50,7 +50,7 @@ girara_log(const char* location, girara_log_level_t level, const char* format, .
}
girara_log_level_t
girara_get_log_level
()
girara_get_log_level
(
void
)
{
return
log_level
;
}
...
...
girara/log.h
View file @
051c20ef
...
...
@@ -55,7 +55,7 @@ void girara_vlog(const char* location, girara_log_level_t level,
* Get the log level.
* @returns The log level.
*/
girara_log_level_t
girara_get_log_level
();
girara_log_level_t
girara_get_log_level
(
void
);
/**
* Set the log level. Any message with a level lower than the log level will
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment