Odd Characters in Log File
Clash Royale CLAN TAG#URR8PPP
up vote
1
down vote
favorite
I checked my cron log files today for a script that I have scheduled and the saw the following errors/characters:
000000000000000000000000000
It goes on like this for many more lines...
I should also mention that my script stopped running entirely when these odd characters appeared.
What happened?
cron logs null
add a comment |Â
up vote
1
down vote
favorite
I checked my cron log files today for a script that I have scheduled and the saw the following errors/characters:
000000000000000000000000000
It goes on like this for many more lines...
I should also mention that my script stopped running entirely when these odd characters appeared.
What happened?
cron logs null
4
This can happen if one process has the file open for writing while another process truncates the file. The first process still writes to the position where the last write ended, the missing bytes are filled with zeroes.
â choroba
Oct 1 at 9:18
A related question is askubuntu.com/questions/356981 .
â JdeBP
Oct 1 at 11:52
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I checked my cron log files today for a script that I have scheduled and the saw the following errors/characters:
000000000000000000000000000
It goes on like this for many more lines...
I should also mention that my script stopped running entirely when these odd characters appeared.
What happened?
cron logs null
I checked my cron log files today for a script that I have scheduled and the saw the following errors/characters:
000000000000000000000000000
It goes on like this for many more lines...
I should also mention that my script stopped running entirely when these odd characters appeared.
What happened?
cron logs null
cron logs null
edited Oct 1 at 9:54
Jeff Schaller
33.6k851113
33.6k851113
asked Oct 1 at 9:07
arnpry
1105
1105
4
This can happen if one process has the file open for writing while another process truncates the file. The first process still writes to the position where the last write ended, the missing bytes are filled with zeroes.
â choroba
Oct 1 at 9:18
A related question is askubuntu.com/questions/356981 .
â JdeBP
Oct 1 at 11:52
add a comment |Â
4
This can happen if one process has the file open for writing while another process truncates the file. The first process still writes to the position where the last write ended, the missing bytes are filled with zeroes.
â choroba
Oct 1 at 9:18
A related question is askubuntu.com/questions/356981 .
â JdeBP
Oct 1 at 11:52
4
4
This can happen if one process has the file open for writing while another process truncates the file. The first process still writes to the position where the last write ended, the missing bytes are filled with zeroes.
â choroba
Oct 1 at 9:18
This can happen if one process has the file open for writing while another process truncates the file. The first process still writes to the position where the last write ended, the missing bytes are filled with zeroes.
â choroba
Oct 1 at 9:18
A related question is askubuntu.com/questions/356981 .
â JdeBP
Oct 1 at 11:52
A related question is askubuntu.com/questions/356981 .
â JdeBP
Oct 1 at 11:52
add a comment |Â
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f472535%2fodd-characters-in-log-file%23new-answer', 'question_page');
);
Post as a guest
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
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
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
4
This can happen if one process has the file open for writing while another process truncates the file. The first process still writes to the position where the last write ended, the missing bytes are filled with zeroes.
â choroba
Oct 1 at 9:18
A related question is askubuntu.com/questions/356981 .
â JdeBP
Oct 1 at 11:52