Giter Club home page Giter Club logo

Comments (5)

itsJoKr avatar itsJoKr commented on June 14, 2024 2

Hmm. We are so accustomed to mixins that we never had this case.

@lukaknezic I think we should mark this as enhancement and tackle it when it's suitable schedule-wise.

@rodion-m If you need this now, you can implement it with some singleton:

// Create a loggy
mixin GlobalLoggy implements LoggyType {
  @override
  Loggy<GlobalLoggy> get loggy => Loggy<GlobalLoggy>('G');
}

// Implement singleton
class Log with GlobalLoggy {
  Log._internal();
  
  static final _instance = Log._internal();
  
  void _debug(String message) {
    loggy.debug(message);
  }
  
  static void debug(String message) {
    _instance._debug(message);
  }
  
}

And then call it like Log.debug('my message');.

from floggy.

rodion-m avatar rodion-m commented on June 14, 2024 1

@itsJoKr Thank you for a quick response! And thanks for a solution to use the logger globally. But I want to use a package that will be popular (and supportable), so I think at the moment lack of a global logger context can be a barrier for many users to use it. Let wait for other people opinion.

from floggy.

Danopie avatar Danopie commented on June 14, 2024 1

@itsJoKr I also wonder that comparing to mixin, wouldn't it be easier to make an extension on Object to get the current loggy?

extension LoggyX on Object {
  Loggy get logUI => Loggy<UiLoggy>('UI Loggy - ${runtimeType.toString()}');
  Loggy get logNetwork => Loggy<NetworkLoggy>('Network Loggy - ${runtimeType.toString()}');
}

from floggy.

lukaknezic avatar lukaknezic commented on June 14, 2024 1

Added global loggy in #34 (will be live with 2.0.1). Global loggy is automatically included and can be used as logDebug, logInfo, logWarning, logError. Due to limitations global loggy won't provide class name, but it can be disabled or filtered just like any other type of loggy.

from floggy.

lukaknezic avatar lukaknezic commented on June 14, 2024

@itsJoKr I agree we can look to add this as an enhancement in future versions. For now, the singleton you wrote should be sufficient.

from floggy.

Related Issues (20)

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.