Python Logging - Tutorial

Поделиться
HTML-код
  • Опубликовано: 30 янв 2025

Комментарии • 124

  • @johnnytoobad7785
    @johnnytoobad7785 2 года назад +35

    Finally...Someone gives an informative lecture/demo on Python's logging engine. This was excellent and would have saved me a bit of time and confusion a couple of years ago. I use a separate "logger" for each module for large apps. This way I know what module (and in many cases the class and/or function) that generated the message. The only problem with this type of logging is that the module level logger (by definition) is a "global" variable. Recently I implemented a color-coded console-only logger also. Once you understand the various "logging" components (handler, formatter, name) it's really not that hard to do. Excellent Video !

    • @afonsosalbrecht
      @afonsosalbrecht 2 года назад +1

      seriously?? that's a copy and pasted video from corey schafer

  • @mccdan666
    @mccdan666 2 года назад +7

    OK, now I understand why you have 1.1M subscribers: exceptional content delivered exceptionally well. First time seeing your content, instant subscriber. Keep up the good work.

    • @NoName-ft3fe
      @NoName-ft3fe 2 месяца назад

      1.6 at the time I subbed, I agree ^^^^^

  • @danub5551
    @danub5551 2 года назад +57

    I was *literally* just searching about logging in python for a project yesterday... just in time Tim 👍

  • @BrandonJacobson
    @BrandonJacobson 2 года назад +5

    I haven't really bridged the gap into intermediate level projects yet. I've used logging a couple of times before, but I can def see how it would be more useful in larger, more mature, programs. Thanks for the video!

  • @BryanJenks
    @BryanJenks 2 года назад +1

    Loguru is my go-to logging module, makes it sooooo easy to define custom levels, multiple logging sinks, and i just parse the data into a logging SQL Server table and it is GLORIOUS

  • @ifthennotagain5195
    @ifthennotagain5195 2 года назад +1

    I've been following you since under 100k subscribers... somehow you consistently produce content that aligns with what I am in the process of learning. Thank you! (I'm a former gryphon too!)

  • @moondevonyt
    @moondevonyt 2 года назад +1

    no joke, i was just looking for a logging in python video. thanks a lot Tim ❤️

  • @johnnyz1206
    @johnnyz1206 2 года назад +15

    By the way, log.log is unchanged not because you are not using it but because you overwrite it with the same log text. All log comes from a logger eventually goes to its parent logger (in this case: root logger).And if you don’t want this behavior, you need to set logger.propagate = False.

    • @ShivamPatel-yg3kd
      @ShivamPatel-yg3kd 2 года назад +1

      Thank you so much, I was literally facing this issue... Thank you, infact in this video the log.log has got updated indeed

    • @KarthikKumaresan-k1o
      @KarthikKumaresan-k1o Год назад

      @@ShivamPatel-yg3kd Thank you so much

  • @davecapstick8129
    @davecapstick8129 11 месяцев назад

    thanks for this, you have explained logging in a really simple and straightforward manner. You have probably saved me a lot of effort in trawling through documentation. Much appreciated

  • @krishnans2006
    @krishnans2006 2 года назад +5

    Amazing video! I'd like to add, however, that most linters recommend using the 'args' of the logging levels to embed variables. For example:
    logging.info(f"the value of x is {x}") -> wrong
    logging.info("the value of x is %d" % x) -> wrong
    logging.info("the value of x is %d", x) -> correct approach
    Do note that all three ways shown above do work - it's just that the third method is recommended for use.

    • @GabrielAcosta00
      @GabrielAcosta00 2 года назад

      I come to comment on this +1

    • @dimond8270
      @dimond8270 2 года назад +1

      can i ask why? ive never heard of a correct way of formatting strings?

    • @lawrencedoliveiro9104
      @lawrencedoliveiro9104 2 года назад

      The second version is fine, too. Note that the docs state that no formatting substitution is done on the message string if no formatting arguments are supplied.
      Compare, say, printf(3), which always does formatting substitution even when it doesn’t make sense. Python is a bit smarter.

  • @enzanto
    @enzanto 2 года назад

    lol, reading all the comments about people searching for logging and praising your video, like it came out the same day they commented.. then i realized the video came out 24 hrs ago, and i too searched for logging the same day the video came out xD

  • @ABEL-cd2sp
    @ABEL-cd2sp 2 года назад

    Listen i won't say that i intended to use print as my main debugging tool but it just naturally happened because i didn't realize that debugging already did most of the work for you, heck at first i didn't even really know what debugging was.
    Great tutorial however I'll end up using it quite a bit in the long term and it saves me some work so nice.

  • @jurajlk9019
    @jurajlk9019 2 года назад +50

    Dont use f-string when logging. Because, if you use logger.debug("text %s", variable), the text formating will only happen, if the debug level is active. If you use f-string, the string will be formated, even before it is decided wether the msg will be logged, thus losing performance

    • @Anequit
      @Anequit 2 года назад +1

      Can you post benchmarks of the performance loss?

    • @jdhoehler
      @jdhoehler Год назад +8

      Was about to comment the same thing. Such a minor point but is considered best practice.

    • @ExDarkx3
      @ExDarkx3 9 месяцев назад +1

      ​@@Anequit they can't, because it depends on what you are evaluating in the fstring. But given that this is a debug level statement, it shouldn't be too expensive. I personally wouldn't sacrifice the readability and still use fstrings tho.

    • @goose_clues
      @goose_clues 9 месяцев назад

      If you care about performance, why not use other languages 😂
      Seriously, python is a flexible and high readability language with reasonable performance. Why do you need to sacrifice a readability? Are you throwing a fuckin Ackermann function to fstring?

    • @goldeer7129
      @goldeer7129 7 месяцев назад

      seems the small gain in performance is absolutely not worth the readibility you may lose so ok but mostly doesn't matter

  • @mikez762
    @mikez762 2 года назад

    i have been debugging all day with those print's. thanks for another way

  • @Earnest1G
    @Earnest1G 2 года назад

    Amazing channel. Has helped me so much when studying to become a software developer. Amazing work really!

  • @hemashankartalupuri6121
    @hemashankartalupuri6121 Год назад

    best thing that i found today about logging-python

  • @ayupitsali608
    @ayupitsali608 2 года назад +1

    Cheers Tim! Another Python skill in the bag!

  • @nikolakhs
    @nikolakhs 2 года назад

    For real this video what at the perfect time, last night i was searching for that and i understood nothing until this time i saw this video . Thanks

  • @deveshgolwalkar3605
    @deveshgolwalkar3605 8 месяцев назад

    short & crisp explanation. Perfect!

  • @khazartalibov9048
    @khazartalibov9048 2 года назад +3

    Nice.We would glad to see about Golang (logging, unit testing and other advanced topics )

  • @astronemir
    @astronemir 2 года назад

    Very valuable and time saving tutorial. Thanks. Fixed up my logging implementation

  • @BummerSlug
    @BummerSlug 2 года назад

    Crazy useful! I am done with print statements now, thank you!!

  • @gskluzacek
    @gskluzacek 2 года назад +2

    Tim, as a couple other people have pointed out in the comments, but it bares repeating, you should never use f-strings, simple concatenation or .format when logging messages. Instead, you should use %s or similar in the log message as a placeholder, and then pass the variable that you want to merge into the message as an argument to the logging method.
    For example:
    in_val = 105
    logging.info(“Tip amount entered: %s, exceeds 100 percent”, in_val)
    This way, the system doesn’t have to do the extra work of formatting the log message, if for example the log level is set to error. When you pass the variable as an argument to the logging function this way, the system will defer the formatting of the message until it absolutely knows that the log message is going to be output.

  • @vivekan97
    @vivekan97 2 года назад +2

    Hey Tim ! great content as always. can you do tutorial on how to write unit test for Flask applications ?

  • @BombasticTom492
    @BombasticTom492 2 года назад

    legend finally made it

  • @teclote
    @teclote 10 месяцев назад

    Outstanding, works great first time, lots of good ideas.

  • @JakobJensen-y3d
    @JakobJensen-y3d 11 месяцев назад +1

    I do miss one thing though; this video shows how to use logging in one file, but what I think most people are having an issue with is multiple loggers.
    An idea for a "logging -part 2" could be, how do we use (different) loggers across a module?
    In the video above there's not really a reason to use "logger", you can use "logging" directly thus I think it would really be great to have an example where (and how) you would use various loggers

  • @ParaSteve1985
    @ParaSteve1985 2 года назад

    Everything i needed in just 15 Minutes! Perfect

  • @moumniable
    @moumniable 2 года назад

    Perfect timing ! Thanks 😀

  • @thomasbates9189
    @thomasbates9189 Год назад

    Very helpful! Thank you!

  • @siddheshnaik4956
    @siddheshnaik4956 Год назад

    Thanks a lot , very informative !!

  • @RetailTradingRealities
    @RetailTradingRealities 2 месяца назад

    life saver
    thanks
    👍

  • @user-cc8kb
    @user-cc8kb 2 года назад

    Great tutorial! Thanks :)

  • @Lunolux
    @Lunolux 2 года назад

    finnaly found, why the "X" user can"t launch my script => it's because this user has not some library installed
    this logging think is very useful thx man.

  • @secretions2991
    @secretions2991 2 года назад

    It's so perfect timing

  • @avnerduchovni6675
    @avnerduchovni6675 2 года назад

    Thanks for the good content

  • @nanayaw7159
    @nanayaw7159 2 года назад

    Great tutorial

  • @Azsha0680
    @Azsha0680 2 года назад

    Hi, nice content ! thx a lot ! starting in Python and your video really help. I'm just wondering about your interface. I saw you use PyCharm in your other video and i'm use to the 'VBA' type of interface. What are you using now and what do you suggest using. Thx in advance !

  • @oneh0urtrades
    @oneh0urtrades Год назад

    thank you it was a helpful video

  • @SomeoneRandom-f9o
    @SomeoneRandom-f9o 2 года назад

    Very useful 👍☺️

  • @gugugaga5867
    @gugugaga5867 2 года назад

    Hey Tim when are you going to open startup?

  • @mikelancaster8924
    @mikelancaster8924 2 года назад

    Thanks so much!

  • @mosa36
    @mosa36 2 года назад

    Could we get more information on db handler? I'd love to learn how to use it :)

  • @salimzavedkarim230
    @salimzavedkarim230 2 года назад

    You're the man!

  • @timwebster85
    @timwebster85 2 года назад

    Epic! thanks

  • @eapenjiss7945
    @eapenjiss7945 2 года назад

    Is it possible to give a short description of the log file at the beginning of each log file, whenever it is created?

  • @MichaelVash7886
    @MichaelVash7886 2 года назад

    Got a list of scripts that I need to turn logging on for. Need to add some logging functions to class object I have made for it

  • @adityaalmighty1
    @adityaalmighty1 2 года назад

    Hi! Any idea when is Kite going to be up?

  • @vanoelizbarashvili6655
    @vanoelizbarashvili6655 2 года назад

    very useful thanks

  • @ArgumentumAdHominem
    @ArgumentumAdHominem 2 года назад

    I've never encountered the need to use a logger in 1 person projects, no matter large or small. However, if you are working as a team, having a common standard for logging is extremely useful

  • @gzbin365
    @gzbin365 2 года назад

    really useful

  • @jeff_tech
    @jeff_tech 2 года назад

    Nice Video! The music was a little bit too loud tho

    • @waqaspathan3337
      @waqaspathan3337 2 года назад

      i didnt even realize music was playing til you pointed it out

    • @jeff_tech
      @jeff_tech 2 года назад

      @@waqaspathan3337 Interesting. It’s probably just me

  • @Richard_GIS
    @Richard_GIS 2 года назад

    Didn't know about the exception thing

  • @backdoorguy1
    @backdoorguy1 6 месяцев назад

    Is there any append mode instead of overwrite mode for logging?? I want to store my logs of a service in an S3 bucket

  • @nahakuu
    @nahakuu 2 года назад +1

    I have noticed, when using the logging.exception() call it adds the exc_info on end of the preformated text.
    This is problem as I created the format to be Json and this exc_info is always put outside of the JSON which breaks the format.
    Can I somehow use the logging formatting to store this exc_info in my json format?
    I tried to use exc_info but that spits out multiple lines, like text what I can see on screen when error occurs. But I want just the Traceback what is return in function logging.exception(), as there it seems to be always the exact point of failure rather then all the dependencies what I have no power over.
    Thank you

  • @skarface5978
    @skarface5978 2 года назад

    Hello, I'm new to programming and I don't know anything about it. I would like to know what you recommend

  • @haroldabella2041
    @haroldabella2041 2 года назад

    What if an existing value exists on the logger? Is it going to skip logging the existing value or will it add the same value?

  • @FMH201
    @FMH201 2 года назад

    Thank you for the video. I really hope you would get rid of the background music.

  • @amrithpurandhar9882
    @amrithpurandhar9882 2 года назад

    DSA chapter is it covered in programming expert ?

  • @twqwhy6763
    @twqwhy6763 2 года назад

    I'm sorry, TIm, i almost never say how much your content helps. Thank you, i'm sorry that we are moneyless-bums and you have to rely onto a separate revenue stream.

  • @dimitriosdesmos4699
    @dimitriosdesmos4699 2 года назад

    The greatest problem I face as a programmer is not ERRORs, ..it is erroneous results. ..and for that the LOGGING module is not helpful.....you need to trace every step of the program ...Errors are not hard to find....getting a 5, instead of a 55 though....can take you 2 days to figure out sometimes...because there is no real error associated with it. Thats what takes time , not things like 1/0...or adding strings to integers.

  • @keeslauwers6824
    @keeslauwers6824 2 года назад +1

    do you read my mind
    I am dealing with an error for the last 3 day
    and I print to debug
    print("this is painful")

  • @ImYala
    @ImYala 2 года назад

    Hey Tim.. I have been learning react and django to make full stack web applications. Do you have any suggestions on what to do when you get stuck and can't seem to find the solution with google?

  • @gbesiu
    @gbesiu 2 года назад

    Could you do something about linear programming please?

  • @trollingspecialist554
    @trollingspecialist554 2 года назад

    thank you
    thank you
    thank you

  • @realityveil6151
    @realityveil6151 2 года назад

    Sure, the logger is cool, but print isn't going to make my script reach out to a remote LDAP server and execute arbitrary code. So I think I'll just keep using print.

  • @Shrinath511
    @Shrinath511 26 дней назад

    Which Code Editor you used?

  • @夜神月-l8q
    @夜神月-l8q 2 года назад

    What do u use as sublime theme and colour scheme 🌚

  • @NishantCosmos
    @NishantCosmos 2 года назад +1

    i'm new to debugging professionally, idk why to do logging

  • @noufalkaku
    @noufalkaku 2 года назад

    Hi Tim, may I know the autocomplete package your are using?

  • @lawrencedoliveiro9104
    @lawrencedoliveiro9104 2 года назад

    The logging module just gives you more control over message output, that’s all. If you use sys.stderr.write, then you have to do your own implementation of verbosity levels, for example. The standard Python module has already pre-invented this whole wheel (and much else besides), so you don’t have to.

  • @wilk85
    @wilk85 2 года назад

    which IDE/code editor you are using?

    • @einstein_god
      @einstein_god 2 года назад

      Sublime text I think

    • @wilk85
      @wilk85 2 года назад

      @@einstein_god thanks

  • @JohnintheDesert
    @JohnintheDesert 2 года назад

    What is your favorite IDE?

  • @shreyb1409
    @shreyb1409 Год назад

    my test.log file was empty till the time i did not add the logging.basicConfig, can someone explain why?

  • @PGhai
    @PGhai 2 года назад

    how do you log in file as well as on screen ?

  • @CodeNight-dm2hv
    @CodeNight-dm2hv 2 года назад +2

    I was looking to put a logging system in my app today! How did you know?

  • @BeigeAlertHamburg
    @BeigeAlertHamburg 2 года назад

    Logging in FastAPI gives me headaches. Dublicate lines, and no rollover in Windows.

  • @armkreuz82
    @armkreuz82 2 года назад

    Damm, I just spent the last 2 days builing my logger template for work.

  • @Lunolux
    @Lunolux 2 года назад

    doesn't know about that, i was creating my "own log file" ^^" for my little python programmation
    this gonna maybe help me, to know whatt the name of the user my script are lauch
    thx

  • @jonk-r7352
    @jonk-r7352 2 года назад

    What ide?

  • @mecheng84
    @mecheng84 5 месяцев назад

    print("like")

  • @edgostyn
    @edgostyn 2 года назад

    WARNING: Do not use logging to replace common messages on your system! Use print instead. You will be flooded with unwanted messages from third-party packages! The use of logging in these cases is considered bad practice!

    • @arikiri_698
      @arikiri_698 Год назад

      It’s literally a built-in package but ok

  • @vinayakram5133
    @vinayakram5133 2 года назад

    💪💪💪

  • @makadi86
    @makadi86 Год назад

    what is this ide?

    • @divideby9
      @divideby9 2 месяца назад

      vs code

    • @divideby9
      @divideby9 2 месяца назад

      i mean sublime text

  • @poptart007-b2r
    @poptart007-b2r 2 года назад

    Yep yep thats the stuff

  • @aarav_
    @aarav_ 2 года назад

    7:32

  • @enos5192
    @enos5192 2 года назад

    Looking for the past 1 year

  • @fhujf
    @fhujf 2 года назад

    "Stop using print debugging" - what sort of madness is this? :D

  • @danieljamesjewell
    @danieljamesjewell Год назад

    hi

  • @augustlumanlan2777
    @augustlumanlan2777 2 года назад

    4th

  • @flobbie87
    @flobbie87 2 года назад

    You stop using print debugging!

  • @jaredbrooks2226
    @jaredbrooks2226 Год назад +2

    Jesus loves you. Start a relationship with Him today before its too late.

    • @gaunterodimm6370
      @gaunterodimm6370 10 месяцев назад +1

      I started a relationship with h8m last night. Nnow my balls are empty. Halleluja

  • @Geogak
    @Geogak 2 года назад

    Yes, please stop teaching print()

  • @chrysos
    @chrysos 2 года назад

    1.

    • @suola_
      @suola_ 2 года назад +3

      ratio

  • @renaudcalmont
    @renaudcalmont 2 года назад

    Those people, trying to use Python like a full-fledged language instead of the hacky script beast it really is, are hilarious

  • @mariocanudo7150
    @mariocanudo7150 2 месяца назад

    Great tutorial