I was reading loggers in python and got confused with logging.basicConfig() method. As mentioned in the python docs that it set many config for root logger, does that mean that it set the configs only for root logger or does it do it even for user created loggers also ?
Another doubt is that whenever we create a user defined logger, does it become child logger of root logger ?