Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
aidge_core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
Eclipse Projects
aidge
aidge_core
Commits
2ce6a11c
Commit
2ce6a11c
authored
1 year ago
by
Olivier BICHLER
Browse files
Options
Downloads
Patches
Plain Diff
Minor change
parent
5f3b3994
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!105
version 0.2.0
,
!90
Introduce Aidge::Log facility for messages logging
Pipeline
#40493
passed
1 year ago
Stage: static_analysis
Stage: build
Stage: test
Stage: coverage
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/aidge/utils/Log.hpp
+1
-1
1 addition, 1 deletion
include/aidge/utils/Log.hpp
src/utils/Log.cpp
+1
-1
1 addition, 1 deletion
src/utils/Log.cpp
with
2 additions
and
2 deletions
include/aidge/utils/Log.hpp
+
1
−
1
View file @
2ce6a11c
...
...
@@ -85,7 +85,7 @@ public:
/**
* Signifies a problem or unexpected condition that the application can
* recover from, but attention is needed to prevent further issues.
* The operation could not be performed, but it does not prevent potenti
e
l
* The operation could not be performed, but it does not prevent potenti
a
l
* further operations.
*/
template
<
typename
...
Args
>
...
...
This diff is collapsed.
Click to expand it.
src/utils/Log.cpp
+
1
−
1
View file @
2ce6a11c
...
...
@@ -17,7 +17,7 @@
Aidge
::
Log
::
Level
Aidge
::
Log
::
mConsoleLevel
=
Info
;
Aidge
::
Log
::
Level
Aidge
::
Log
::
mFileLevel
=
Debug
;
std
::
string
Aidge
::
Log
::
mFileName
=
"aidge
_
log
.txt
"
;
std
::
string
Aidge
::
Log
::
mFileName
=
"aidge
.
log"
;
std
::
unique_ptr
<
FILE
,
decltype
(
&
std
::
fclose
)
>
Aidge
::
Log
::
mFile
{
nullptr
,
nullptr
};
void
Aidge
::
Log
::
log
(
Level
level
,
const
std
::
string
&
msg
)
{
...
...
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