Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91722566
log.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Nov 13, 20:45
Size
2 KB
Mime Type
text/x-c++
Expires
Fri, Nov 15, 20:45 (2 d)
Engine
blob
Format
Raw Data
Handle
22314291
Attached To
rSPECMICP SpecMiCP / ReactMiCP
log.cpp
View Options
/*-------------------------------------------------------------------------------
Copyright (c) 2014,2015 F. Georget <fabieng@princeton.edu>, Princeton University
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation and/or
other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-----------------------------------------------------------------------------*/
#include "log.hpp"
#include "../macros.hpp"
namespace
specmicp
{
namespace
logger
{
// Explicit instanciation
template
class
Log
<
ErrFile
>
;
template
<>
LogLevel
&
Log
<
ErrFile
>::
ReportLevel
(){
static
LogLevel
report_level
=
Debug
;
return
report_level
;
}
std
::
ostream
*&
ErrFile
::
stream
()
{
static
std
::
ostream
*
stream
=
nullptr
;
return
stream
;
}
void
ErrFile
::
output
(
const
std
::
string
&
msg
)
{
std
::
ostream
*
out
=
stream
();
specmicp_assert
(
out
!=
nullptr
);
(
*
out
)
<<
msg
<<
std
::
endl
;
out
->
flush
();
}
}
//end namespace logger
void
init_logger
(
std
::
ostream
*
out
,
specmicp
::
logger
::
LogLevel
level
)
{
logger
::
ErrFile
::
stream
()
=
out
;
stdlog
::
ReportLevel
()
=
level
;
}
}
//end namespace specmicp
Event Timeline
Log In to Comment