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
Ankur Sinha
girara
Commits
69ded4e2
Commit
69ded4e2
authored
Mar 14, 2018
by
Sebastian Ramacher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move girara_log_level_t to log.h
We do not need it anywhere else.
parent
9587f3d1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
12 deletions
+11
-12
girara/log.h
girara/log.h
+11
-1
girara/types.h
girara/types.h
+0
-11
No files found.
girara/log.h
View file @
69ded4e2
...
...
@@ -6,9 +6,19 @@
#include <glib.h>
#include <stdarg.h>
#include "types.h"
#include "macros.h"
/**
* Log levels
*/
typedef
enum
girara_log_level_e
{
GIRARA_DEBUG
,
/**> Debug messages */
GIRARA_INFO
,
/**> Information debug output */
GIRARA_WARNING
,
/**> Warning level */
GIRARA_ERROR
/**> Error */
}
girara_log_level_t
;
/**
* Prints a debug message. The arguments are passed to @ref girara_log as
* last argument.
...
...
girara/types.h
View file @
69ded4e2
...
...
@@ -52,17 +52,6 @@ enum
GIRARA_GOTO_END
/**< Go to end of the line */
};
/**
* Log levels
*/
typedef
enum
girara_log_level_e
{
GIRARA_DEBUG
,
/**> Debug messages */
GIRARA_INFO
,
/**> Information debug output */
GIRARA_WARNING
,
/**> Warning level */
GIRARA_ERROR
/**> Error */
}
girara_log_level_t
;
/**
* Mode identifier
*/
...
...
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