Log file getting created in wrong location with os.path.join
I am trying to create log files under directory patchsetcreatedlogs but the log file gets created as patchsetcreatedlogspatchset_created_hook_log_11122018_114810.txt with the below code,
I expect the filw patchset_created_hook_log_11122018_114810.txt
to be created under patchsetcreatedlogs ,where am I going wrong?
import time,os,logging
# setup logging
patchsetcreatedlog = 'patchset_created_hook_log_' + time.strftime("%m%d%Y") + '_' + time.strftime("%H%M%S") + '.txt'
log = os.path.join(os.path.dirname(os.path.realpath(__file__)),'patchsetcreatedlogs' + patchsetcreatedlog)
logger = logging.getLogger(__name__)
#logger.setLevel(logging.DEBUG)
logger.setLevel(10)
ch = logging.StreamHandler()
#ch.setLevel(logging.DEBUG)
ch.setLevel(10)
formatter = logging.Formatter('%(asctime)s %(filename)-15s %(funcName)-20s %(lineno)-5s %(levelname)-8s: %(message)s', datefmt="%Y-%m-%d %H:%M:%S")
ch.setFormatter(formatter)
logger.addHandler(ch)
fh = logging.FileHandler(log, 'w')
fh.setLevel(logging.DEBUG)
fh.setFormatter(formatter)
logger.addHandler(fh)
patchsetcreatedlogspatchset_created_hook_log_11122018_114810.txt
python
add a comment |
I am trying to create log files under directory patchsetcreatedlogs but the log file gets created as patchsetcreatedlogspatchset_created_hook_log_11122018_114810.txt with the below code,
I expect the filw patchset_created_hook_log_11122018_114810.txt
to be created under patchsetcreatedlogs ,where am I going wrong?
import time,os,logging
# setup logging
patchsetcreatedlog = 'patchset_created_hook_log_' + time.strftime("%m%d%Y") + '_' + time.strftime("%H%M%S") + '.txt'
log = os.path.join(os.path.dirname(os.path.realpath(__file__)),'patchsetcreatedlogs' + patchsetcreatedlog)
logger = logging.getLogger(__name__)
#logger.setLevel(logging.DEBUG)
logger.setLevel(10)
ch = logging.StreamHandler()
#ch.setLevel(logging.DEBUG)
ch.setLevel(10)
formatter = logging.Formatter('%(asctime)s %(filename)-15s %(funcName)-20s %(lineno)-5s %(levelname)-8s: %(message)s', datefmt="%Y-%m-%d %H:%M:%S")
ch.setFormatter(formatter)
logger.addHandler(ch)
fh = logging.FileHandler(log, 'w')
fh.setLevel(logging.DEBUG)
fh.setFormatter(formatter)
logger.addHandler(fh)
patchsetcreatedlogspatchset_created_hook_log_11122018_114810.txt
python
add a comment |
I am trying to create log files under directory patchsetcreatedlogs but the log file gets created as patchsetcreatedlogspatchset_created_hook_log_11122018_114810.txt with the below code,
I expect the filw patchset_created_hook_log_11122018_114810.txt
to be created under patchsetcreatedlogs ,where am I going wrong?
import time,os,logging
# setup logging
patchsetcreatedlog = 'patchset_created_hook_log_' + time.strftime("%m%d%Y") + '_' + time.strftime("%H%M%S") + '.txt'
log = os.path.join(os.path.dirname(os.path.realpath(__file__)),'patchsetcreatedlogs' + patchsetcreatedlog)
logger = logging.getLogger(__name__)
#logger.setLevel(logging.DEBUG)
logger.setLevel(10)
ch = logging.StreamHandler()
#ch.setLevel(logging.DEBUG)
ch.setLevel(10)
formatter = logging.Formatter('%(asctime)s %(filename)-15s %(funcName)-20s %(lineno)-5s %(levelname)-8s: %(message)s', datefmt="%Y-%m-%d %H:%M:%S")
ch.setFormatter(formatter)
logger.addHandler(ch)
fh = logging.FileHandler(log, 'w')
fh.setLevel(logging.DEBUG)
fh.setFormatter(formatter)
logger.addHandler(fh)
patchsetcreatedlogspatchset_created_hook_log_11122018_114810.txt
python
I am trying to create log files under directory patchsetcreatedlogs but the log file gets created as patchsetcreatedlogspatchset_created_hook_log_11122018_114810.txt with the below code,
I expect the filw patchset_created_hook_log_11122018_114810.txt
to be created under patchsetcreatedlogs ,where am I going wrong?
import time,os,logging
# setup logging
patchsetcreatedlog = 'patchset_created_hook_log_' + time.strftime("%m%d%Y") + '_' + time.strftime("%H%M%S") + '.txt'
log = os.path.join(os.path.dirname(os.path.realpath(__file__)),'patchsetcreatedlogs' + patchsetcreatedlog)
logger = logging.getLogger(__name__)
#logger.setLevel(logging.DEBUG)
logger.setLevel(10)
ch = logging.StreamHandler()
#ch.setLevel(logging.DEBUG)
ch.setLevel(10)
formatter = logging.Formatter('%(asctime)s %(filename)-15s %(funcName)-20s %(lineno)-5s %(levelname)-8s: %(message)s', datefmt="%Y-%m-%d %H:%M:%S")
ch.setFormatter(formatter)
logger.addHandler(ch)
fh = logging.FileHandler(log, 'w')
fh.setLevel(logging.DEBUG)
fh.setFormatter(formatter)
logger.addHandler(fh)
patchsetcreatedlogspatchset_created_hook_log_11122018_114810.txt
python
python
asked Nov 12 '18 at 19:59
Flair
1961312
1961312
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
It's not an issue with os.path.join, it's just that by doing:
'patchsetcreatedlogs' + patchsetcreatedlog
you're adding 2 strings instead of passing them in argument of join (which can take any number of arguments, not just 2). So no path delimiter is added.
Besides, os.path.realpath is not needed here. The path to the module is a simple path or name. So, just remove it.
os.path.join(os.path.dirname(os.path.realpath(__file__)),'patchsetcreatedlogs' + patchsetcreatedlog)
should be:
os.path.join(os.path.dirname(__file__),'patchsetcreatedlogs', patchsetcreatedlog)
(if __file__ is just a filename, dirname returns an empty string and join ignores it so it still works)
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53269251%2flog-file-getting-created-in-wrong-location-with-os-path-join%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
It's not an issue with os.path.join, it's just that by doing:
'patchsetcreatedlogs' + patchsetcreatedlog
you're adding 2 strings instead of passing them in argument of join (which can take any number of arguments, not just 2). So no path delimiter is added.
Besides, os.path.realpath is not needed here. The path to the module is a simple path or name. So, just remove it.
os.path.join(os.path.dirname(os.path.realpath(__file__)),'patchsetcreatedlogs' + patchsetcreatedlog)
should be:
os.path.join(os.path.dirname(__file__),'patchsetcreatedlogs', patchsetcreatedlog)
(if __file__ is just a filename, dirname returns an empty string and join ignores it so it still works)
add a comment |
It's not an issue with os.path.join, it's just that by doing:
'patchsetcreatedlogs' + patchsetcreatedlog
you're adding 2 strings instead of passing them in argument of join (which can take any number of arguments, not just 2). So no path delimiter is added.
Besides, os.path.realpath is not needed here. The path to the module is a simple path or name. So, just remove it.
os.path.join(os.path.dirname(os.path.realpath(__file__)),'patchsetcreatedlogs' + patchsetcreatedlog)
should be:
os.path.join(os.path.dirname(__file__),'patchsetcreatedlogs', patchsetcreatedlog)
(if __file__ is just a filename, dirname returns an empty string and join ignores it so it still works)
add a comment |
It's not an issue with os.path.join, it's just that by doing:
'patchsetcreatedlogs' + patchsetcreatedlog
you're adding 2 strings instead of passing them in argument of join (which can take any number of arguments, not just 2). So no path delimiter is added.
Besides, os.path.realpath is not needed here. The path to the module is a simple path or name. So, just remove it.
os.path.join(os.path.dirname(os.path.realpath(__file__)),'patchsetcreatedlogs' + patchsetcreatedlog)
should be:
os.path.join(os.path.dirname(__file__),'patchsetcreatedlogs', patchsetcreatedlog)
(if __file__ is just a filename, dirname returns an empty string and join ignores it so it still works)
It's not an issue with os.path.join, it's just that by doing:
'patchsetcreatedlogs' + patchsetcreatedlog
you're adding 2 strings instead of passing them in argument of join (which can take any number of arguments, not just 2). So no path delimiter is added.
Besides, os.path.realpath is not needed here. The path to the module is a simple path or name. So, just remove it.
os.path.join(os.path.dirname(os.path.realpath(__file__)),'patchsetcreatedlogs' + patchsetcreatedlog)
should be:
os.path.join(os.path.dirname(__file__),'patchsetcreatedlogs', patchsetcreatedlog)
(if __file__ is just a filename, dirname returns an empty string and join ignores it so it still works)
edited Nov 12 '18 at 20:10
answered Nov 12 '18 at 20:04
Jean-François Fabre
101k954109
101k954109
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53269251%2flog-file-getting-created-in-wrong-location-with-os-path-join%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown