#!/usr/bin/env perl

use strict;
use warnings;

use App::logcat_format;

App::logcat_format->run;

exit 0;

__END__

=head1 NAME

logcat_format - formats android adb logcat output

=head1 SYNOPSIS

If only one of emulator or device is running, and for the default logcat output run..
% logcat_format 

For default logcat output for emulator only ..
% logcat_format -e for emulator

For default logcat output for device only ..
% logcat_format -d for device 

For other adb logcat commands, just pipe into logcat_format ..
% adb logcat -v threadtime | logcat_format
% adb -e logcat -v process | logcat_format

=head1 DESCRIPTION

Formats the output of android 'adb logcat' command

=head1 VERSION

version 0.02

=cut

