vote up 1 vote down star

I trying to incorporate a simple error logging into my existing app, at the moment it reports errors just using cout so i was hoping to keep a similar interface using the << operator. However i want it to log the line & function the error occurred. But i don't want to have to type __LINE__, __FUNCTION__ every time i need to log. Does anyone know a trick i can use to allow the __LINE__ macro to be used inside another function, reporting the calling line instead. Hope that makes sense

class myLogClass {
    uint8_t level;          		
public:         		
    bool operator<<( const char * input );      	
};

bool myLogClass::operator<<( const char * input ) {
    logItInSQL( input );
    return true;
}

Instead of this every time

myLogClass << "Line No: " << __LINE__
    << " Function: " << __FUNCTION__
    << " Error: " << "This is my error to be logged";

I would like to just be able to do:

myLogClass << "This is my error to be logged";

bool myLogClass::operator<<( const char * input ) {
    logItInSQL( " Line No: __LINE__" );
    logItInSQL( " Function: __FUNCTION__" );
    logItInSQL( " Error: " + input );
    return true;
}
flag

3 Answers

vote up 6 vote down check
myLogClass << "Line No: " << __LINE__ ...

With your operator << chaining will not work since it returns a bool.

bool myLogClass::operator << (const char * input)

It is customary to define stream insertion as follows:

std::ostream& myLogClass::operator << (std::ostream& o, const char * input) {
    // do something
    return o;
}

Do this:

#define log(o, s) o << "Line No: " << __LINE__ << \
                   " Function: " << __FUNCTION__ << \
                   " Error: " << s // note I leave ; out

Additionally, you can wrap the macro in a do-while loop:

#define log(o, s) do { o << "Line No: " << __LINE__ << \
                   " Function: " << __FUNCTION__ << \
                   " Error: " << s; \ 
                  } while(0) // here, I leave ; out

Then you can happily write:

 myLogClass myLogger; // do this

 // use it
log(myLogger, "This is my error to be logged"); // note the ;
link|flag
Good answer, except that myLogClass is a class, not an instance, so he actually needs to instantiate it and pass an instance to log(instance,"message) – Carlos A. Ibarra Mar 7 at 19:15
@thinkcube: Thanks! Note to self: never copy-paste from questions. Always compile. – dirkgently Mar 7 at 19:21
vote up 1 vote down

No, this is why logging is done with macros. LINE needs to be expanded by the preprocessor on the line in question, not in a common logging function.

link|flag
vote up 0 vote down

As Adam Mitz mentioned you need to use __LINE__ in the place of call.
I recommend to you to add an extra parameter like "additionalInfo" and create a macro that will generate this "additionalInfo" using __LINE__ and __FUNCTION__.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.