As I found recently, with the introduction of util-linux v2.20 the follow options where added:
2011/09/27 Original entry
Dmesg is a really useful tool to look at recent log messages from the kernel, especially when there is a problem. A while ago the option to include timestamps in kernel messages was added, which gives you a seconds since boot indication of when a message occurred.
Although this provides good information, it is not really human readable. You can't see at a glance if a problem is recent or not without knowing the boot time of the system.
A simple oneliner can take care of that.
Piping the output from dmesg through the onliner gives the following output:
Much better readable :)