Giter Site home page Giter Site logo

fixandroidlogger's Introduction

FixAndroidLogger

This app shows how using the FMX.Platform.Logger.Android.Fix unit, you can change the tag used by FireMonkey so that you can use adb logcat to properly filter your logs for debugging.

In order to use it, all you have to do is include the FMX.Platform.Logger.Android.Fix unit in your project file.

Quick steps to use it

  • Include or add FMX.Platform.Logger.Android.Fix in your project file.
  • Include FMX.Platform.Logger.Android.Fix in the uses clause.
  • Include the following code in when logging:
var LLogService: IFMXLoggingService;
var LLogPriority: IFMXTagPriority;
if TPlatformServices.Current.SupportsPlatformService(IFMXLoggingService, LLogService) and
    Supports(LLogService, IFMXTagPriority, LLogPriority) then 
    begin
      LLogPriority.i('TagName', 'LogMessage');
    end;

adb logcat -s TagName:*

Demo

See the code in FixAndroudLoggerDemoImpl.pas for how to use it.

FMX app Console

Once you have clicked on the Change Tag button, all your logs will be tagged with that name.

Demo

You can also have priority tags as well, so your tags can have debug, error, info or verbose priority.

To filter the tags using adb logcat, simply use the command

adb logcat -s MyAppName

where MyAppName is the tag name you have chosen to use.

Hope this helps with your debugging.

Enjoy,
Chee-Wee Chua,
Singapore.

fixandroidlogger's People

Contributors

chuacw avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.