Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

skewer.log messages arrive out of order #78

Open
togakangaroo opened this issue Mar 9, 2017 · 1 comment
Open

skewer.log messages arrive out of order #78

togakangaroo opened this issue Mar 9, 2017 · 1 comment

Comments

@togakangaroo
Copy link

Using this simple code

skewer.log('start it')
for(var i = 0; i < 10; i++)
  skewer.log(i)
skewer.log('cut it')

I get completely unpredictable message ordering

Running it 3 times:

"start it"
5
6
7
8
9
"cut it"
4
3
2
1
0
"start it"
5
6
7
8
9
"cut it"
4
3
2
1
0
"start it"
5
6
7
8
9
"cut it"
4
3
2
1
0

Seems like there needs to be some sort of message order concept

@skeeto
Copy link
Owner

skeeto commented Apr 1, 2017 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants