GithubHelp home page GithubHelp logo

Comments (4)

niieani avatar niieani commented on May 5, 2024

Hey @steffenhoenig. That's a really cool idea! I was thinking of implementing something similar, but never got enough time for it.
Anyway, to the logger.
Function Log.RegisterLogger takes two parameters:
First is the name of the logger - how you want to call it.
Second is the name of the function that is used for logging.

After you register the logger in the system, you need to set what you want logged. The simplest way to do that is to log everything in a namespace. Just put namespace Hello in the file you want to log from and then:
Log.AddOutput Hello $logger_name

Take a look here for the example usage: logging.sh.

In any case, if all you need is to use subject=$log_level, you can use the default loggers, which are already registered. Default logger CUSTOM prints the $subject by default.

#!/usr/bin/env bash

## BOOTSTRAP ##
source "$( cd "${BASH_SOURCE[0]%/*}" && pwd )/lib/oo-framework.sh"

namespace MyApp
Log.AddOutput MyApp CUSTOM

subject=WARN Log "I am a warning"
subject=STEFFEN Log "I am a Steffen :-)"

The above should work and print out:

[WARN] [steffen.sh:9] I am a warning 
[STEFFEN] [steffen.sh:10] I am a Steffen :-) 

If you don't want the file and line in the logs, we can write a simple Logger Function:

# (...) bootstrap (...) #

namespace MyApp

SteffensLoggingFunction() {
    Console.WriteStdErr "$(UI.Color.Blue)[$subject]$(UI.Color.Default) $*"
}

Log.RegisterLogger STEFFEN_SHORT_LOGGER SteffensLoggingFunction
Log.AddOutput MyApp STEFFEN_SHORT_LOGGER

subject=WARN Log "I am a warning"
subject=STEFFEN Log "I am a Steffen :-)"

Prints:

[WARN] I am a warning 
[STEFFEN] I am a Steffen :-) 

Be sure to checkout both doc. sections on logging:

If you have more questions, shoot.

from bash-oo-framework.

niieani avatar niieani commented on May 5, 2024

Also, regarding what you're trying to do - I think it would be better if you wrote a new module, say System.HttpImport for that purpose. We could integrate it at a later point, but for now - for debugging purposes - it will be much easier for you to develop that way.

from bash-oo-framework.

niieani avatar niieani commented on May 5, 2024

@steffenhoenig did that help? Can I close the issue?

from bash-oo-framework.

 avatar commented on May 5, 2024

Hi @niieani ,

yeah that helped to get my head around it. Just working with a line like

namespace oo
Log.AddOutput oo CUSTOM

And, et voila I got all the debug output I had been after. Thx mate.

P.S. Your hint to make it upstream compatible inspired me to refactor it to another file. Will upload it asap. Cheers!

from bash-oo-framework.

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.