Well, that's not too difficult. You could open the file, read it line-by-line, and print only those lines which contain the word "WARNING", for example. If you wanted to be more robust, you could separate out the column and compare that.
Some code that may help:
std::string text = "A message of some sort.";
if(text.find("message")) {
std::cout << "The string contains the word 'message'\n";
} And for columns, you could use stringstreams.
#include <sstream> // for stringstreams
std::string line; // this is read from a file
std::istringstream stream(line);
std::string col1, col2, col3;
stream >> col1 >> col2 >> col3;
if(col3 == "WARNING") /* ... */
[edit] By the way, don't say "URGENT HELP NEEDED IMMEDIATELY PLZ!!!!!111" in the title. It's not going to make people read it any faster. [/edit]